Home
last modified time | relevance | path

Searched refs:TestCase (Results 1 – 4 of 4) sorted by relevance

/honee/tests/
H A Djunit_common.py20 from junit_xml import TestCase, TestSuite, to_xml_report_string # nopep8
523 def test_case_output_string(test_case: TestCase, spec: TestSpec, mode: RunMode, argument
586 mode: RunMode, nproc: int, suite_spec: SuiteSpec, verbose: bool = False) -> TestCase:
618 test_case: TestCase = TestCase(f'{test}, "{spec.name}", n{nproc}, {backend}',
633 test_case = TestCase(f'{test}, "{spec.name}", n{nproc}, {backend}',
H A Dsmartsim_regression_framework.py2 from junit_xml import TestCase
204 test_case = TestCase(f'SmartSim Test {ceed_resource}',
/honee/tests/junit-xml/
H A DREADME.rst45 from junit_xml import TestSuite, TestCase
47 test_cases = [TestCase('Test1', 'some.class.name', 123.345, 'I am stdout!', 'I am stderr!')]
/honee/tests/junit-xml/junit_xml/
H A D__init__.py364 class TestCase(object): class