feat(test) first experiement with Unity test engine

This commit is contained in:
Gabor Kiss-Vamosi
2021-06-02 15:41:47 +02:00
parent 428db9494d
commit c26bcf1cc6
37 changed files with 4759 additions and 5582 deletions

9
tests/test.py Normal file
View File

@@ -0,0 +1,9 @@
import os
import glob
def prepare():
os.system("rm test_*_Runner.c")
files = glob.glob("./test_*.c")
for f in files:
os.system("ruby unity/generate_test_runner.rb " + f + " config.yml")
return files