aboutsummaryrefslogtreecommitdiff
path: root/test/unit/basic_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/basic_test.cpp')
-rw-r--r--test/unit/basic_test.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/unit/basic_test.cpp b/test/unit/basic_test.cpp
index 5a153331..8ee82bf4 100644
--- a/test/unit/basic_test.cpp
+++ b/test/unit/basic_test.cpp
@@ -26,10 +26,14 @@
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
-#include "catch.hpp"
+#include "gtest_include.h"
+
+namespace {
// ---------------------------------------------------------------------------
-TEST_CASE( "dumy" ) {
- CHECK( 1 == 1 );
+TEST( dumy, dummy ) {
+ ASSERT_EQ( 1 , 1 );
}
+
+} // namespace