summaryrefslogtreecommitdiffstats
path: root/tests/thread_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/thread_test.cpp')
-rw-r--r--tests/thread_test.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/thread_test.cpp b/tests/thread_test.cpp
deleted file mode 100644
index fd7a411..0000000
--- a/tests/thread_test.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <iostream>
-#include "raul/Thread.hpp"
-
-using namespace std;
-using namespace Raul;
-
-int
-main()
-{
- Thread& this_thread = Thread::get();
- this_thread.set_name("Main");
-
- cout << "Thread name should be Main" << endl;
-
- cout << "Thread name: " << Thread::get().name() << endl;
-
- return 0;
-}
-