Emulator+Test: Add main and example unit test

This commit is contained in:
Riyyi
2022-08-17 18:20:11 +02:00
parent 45fba7f693
commit c5d5ffc1eb
2 changed files with 29 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/*
* Copyright (C) 2022 Riyyi
*
* SPDX-License-Identifier: MIT
*/
#include "macro.h"
#include "testcase.h"
#include "testsuite.h"
// -----------------------------------------
TEST_CASE(Thing)
{
int a = 5;
EXPECT_EQ(a, 5);
}