summaryrefslogtreecommitdiff
path: root/tests/hello.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hello.cpp')
-rw-r--r--tests/hello.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/hello.cpp b/tests/hello.cpp
deleted file mode 100644
index 5bf3427..0000000
--- a/tests/hello.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <stdio.h>
-#include "gtest/gtest.h"
-
-extern "C" {
-#include "dlt_common.h"
-#include "dlt_user.h"
-#include "dlt_user_shared.h"
-#include "dlt_user_shared_cfg.h"
-#include "dlt_user_cfg.h"
-}
-
-TEST(t_dlt_buffer_init_dynamic, returns_0)
-{
- DltUser dlt_user;
- EXPECT_EQ(0,dlt_buffer_init_dynamic(&(dlt_user.startup_buffer), DLT_USER_RINGBUFFER_MIN_SIZE, DLT_USER_RINGBUFFER_MAX_SIZE, DLT_USER_RINGBUFFER_STEP_SIZE));
-}
-
-int main(int argc, char **argv)
-{
- ::testing::InitGoogleTest(&argc, argv);
- return RUN_ALL_TESTS();
-}
-