Migrate frmwrk_25 to pytest
diff --git a/test/test_utils.py b/test/test_utils.py
index b79e0fd..23bef2c 100644
--- a/test/test_utils.py
+++ b/test/test_utils.py
@@ -57,6 +57,12 @@
for line in template:
output.write(line.replace('MYNAME', MYNAME))
+def golden_testsuite_with_2_unittests(MYNAME1, MYNAME2):
+ template = open('{}/test/templates/testsuite_with_2_unittest.gold'.format(os.environ['SVUNIT_INSTALL']))
+ with open('testsuite.gold', 'w') as output:
+ for line in template:
+ output.write(line.replace('MYNAME1', MYNAME1).replace('MYNAME2', MYNAME2))
+
def golden_testrunner_with_1_testsuite():
template = open('{}/test/templates/testrunner_with_1_testsuite.gold'.format(os.environ['SVUNIT_INSTALL']))
with open('testrunner.gold', 'w') as output: