die Dateien um benannt
This commit is contained in:
parent
73d58e83af
commit
4abc21c92a
|
@ -1,4 +1,4 @@
|
|||
#include "../src/demo.h"
|
||||
#include "../src/SharedMemory.h"
|
||||
|
||||
int main() {
|
||||
return test();
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
#include "SharedMemory.h"
|
||||
|
||||
int test() {
|
||||
return 41;
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
#include "demo.h"
|
||||
|
||||
int test() {
|
||||
return 42;
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
#include <catch2/catch.hpp>
|
||||
#include "../src/demo.h"
|
||||
#include "../src/SharedMemory.h"
|
||||
|
||||
TEST_CASE("Demo test") {
|
||||
REQUIRE(test() == 42);
|
||||
|
|
Loading…
Reference in New Issue