shared-memory/test/test_demo.cpp

8 lines
112 B
C++
Raw Normal View History

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