From 4a809bbcf3ff97c2e666fd3faab5e178be20ab57 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 1 May 2020 01:22:46 -0400 Subject: Add mock_image function --- tests/test_rpath_rpath_get.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/test_rpath_rpath_get.c (limited to 'tests/test_rpath_rpath_get.c') diff --git a/tests/test_rpath_rpath_get.c b/tests/test_rpath_rpath_get.c new file mode 100644 index 0000000..17e7e7c --- /dev/null +++ b/tests/test_rpath_rpath_get.c @@ -0,0 +1,15 @@ +#include "spm.h" +#include "framework.h" + +const char *testFmt = "returned '%s', expected '%s'\n"; +struct TestCase testCase[] = { + {}, +}; +size_t numCases = sizeof(testCase) / sizeof(struct TestCase); + +int main(int argc, char *argv[]) { + for (size_t i = 0; i < numCases; i++) { + // myassert() + } + return 0; +} \ No newline at end of file -- cgit