We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b8bd4d commit 5ed4041Copy full SHA for 5ed4041
1 file changed
modules/runners/tests/test_runners.cpp
@@ -0,0 +1,11 @@
1
+#include <gtest/gtest.h>
2
+
3
+#include <array>
4
5
+#include "runners/include/runners.hpp"
6
7
+TEST(RunnersTest, SimpleInit) {
8
+ int argc = 1;
9
+ std::array<char *, 2> argv = {const_cast<char *>("test"), nullptr};
10
+ EXPECT_EQ(ppc::runners::SimpleInit(argc, argv.data()), 0);
11
+}
0 commit comments