Skip to content

Commit 081591e

Browse files
committed
Add SimpleInit runner test
1 parent 7b8bd4d commit 081591e

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include <gtest/gtest.h>
2+
3+
#include "runners/include/runners.hpp"
4+
5+
TEST(RunnersTest, SimpleInit) {
6+
int argc = 1;
7+
char* argv[] = {(char*)"test", nullptr};
8+
EXPECT_EQ(ppc::runners::SimpleInit(argc, argv), 0);
9+
}

0 commit comments

Comments
 (0)