mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-12-24 22:33:14 +01:00
9 lines
155 B
C++
9 lines
155 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "../fuzz/unpack_pack_fuzzer.cc"
|
|
|
|
TEST(FUZZ_UNPACK_PACK_FUZZER, works)
|
|
{
|
|
EXPECT_EQ(0, LLVMFuzzerTestOneInput(0, 0));
|
|
}
|