mirror of
https://github.com/msgpack/msgpack-c
synced 2026-06-08 16:11:40 +00: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));
|
|
}
|