shared-memory/test/test_demo.cpp

8 lines
111 B
C++
Raw Permalink Normal View History

2020-01-08 19:12:50 +01:00
#include <catch2/catch.hpp>
2019-10-19 17:12:14 +02:00
#include "../src/SharedMemory.h"
2020-01-08 11:58:15 +01:00
TEST_CASE("Demo test"){
2019-12-05 09:36:57 +01:00
REQUIRE(42 == 42);
2019-10-23 21:39:09 +02:00
}