mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-04-27 02:16:18 +02:00
9 lines
156 B
C++
9 lines
156 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "../fuzz/unpack_pack_fuzzer.cpp"
|
|
|
|
TEST(FUZZ_UNPACK_PACK_FUZZER, works)
|
|
{
|
|
EXPECT_EQ(0, LLVMFuzzerTestOneInput(0, 0));
|
|
}
|