We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59849ed commit aefe884Copy full SHA for aefe884
tests/fuzz_test/fuzz_gtest_wrapper.cpp
@@ -4,10 +4,14 @@
4
#include <gtest/gtest.h>
5
6
// NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)
7
-extern int fuzz_test_entry(int argc, char** argv);
+extern int fuzz_test_entry(
8
+ int argc,
9
+ char** argv);
10
11
-TEST(FuzzTest, BasicCycles) // NOLINT
12
+TEST(
13
+ FuzzTest,
14
+ BasicCycles) // NOLINT
15
{
16
// Run 3 cycles with default settings (no args needed beyond argc=0)
17
// NOLINTNEXTLINE(cppcoreguidelines-avoid-magic-numbers)
0 commit comments