Searched defs:TestCaseData (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuiadmintestcase.py36 from testmanager.core.testcase import TestCaseDataEx, TestCaseData, TestCaseDependencyLogic; namespace
103 TestCaseData.ksParam_idTestCase, sTmp.idTestCase,
127 TestCaseData.ksParam_idGenTestCase: oEntry.idGenTestCase }), ];
131 TestCaseData.ksParam_idTestCase: oEntry.idTestCase }));
134 TestCaseData.ksParam_idGenTestCase: oEntry.idGenTestCase }));
138 TestCaseData.ksParam_idTestCase: oEntry.idTestCase },
168 oForm.addIntRO (TestCaseData.ksParam_idTestCase, oData.idTestCase, 'Test Case ID')
169 oForm.addTimestampRO(TestCaseData.ksParam_tsEffective, oData.tsEffective, 'Last changed')
170 oForm.addTimestampRO(TestCaseData.ksParam_tsExpire, oData.tsExpire, 'Expires (excl)')
171 oForm.addIntRO (TestCaseData
[all...]
H A Dwuiadmintestgroup.py36 from testmanager.core.testcase import TestCaseData, TestCaseLogic; namespace
110 TestCaseData.ksParam_idGenTestCase: oMember.oTestCase.idGenTestCase, } ).toHtml(),
113 TestCaseData.ksParam_idTestCase: oMember.oTestCase.idTestCase, } ).toHtml()
H A Dwuitestresult.py39 from testmanager.core.testcase import TestCaseData; namespace
339 TestCaseData.ksParam_idTestCase: oTestCaseEx.idTestCase,
709 TestCaseData.ksParam_idTestCase: oEntry.idTestCase },
H A Dwuiadmin.py46 from testmanager.core.testcase import TestCaseLogic, TestCaseData, TestCaseDataEx namespace
246 TestCaseData.ksParam_idTestCase,
/vbox/src/VBox/ValidationKit/testmanager/core/
H A Ddbobjcache.py118 """ Gets the corresponding TestCaseData object. """
122 from testmanager.core.testcase import TestCaseData; namespace
123 oRet = TestCaseData();
H A Dtestcaseargs.py39 from testmanager.core.testcase import TestCaseData, TestCaseDependencyLogic, TestCaseGlobalRsrcDepLogic; namespace
166 sError = TestCaseData.validateTestBoxReqExpr(oValue);
168 sError = TestCaseData.validateBuildReqExpr(oValue);
209 self.oTestCase = TestCaseData().initFromDbWithId(oDb, self.idTestCase, tsConfigEff);
232 return TestCaseData.matchesTestBoxPropsEx(oTestBoxData, self.oTestCase.sTestBoxReqExpr) \
233 and TestCaseData.matchesTestBoxPropsEx(oTestBoxData, self.sTestBoxReqExpr);
243 return TestCaseData.matchesBuildPropsEx(oBuildDataEx, self.oTestCase.sBuildReqExpr) \
244 and TestCaseData.matchesBuildPropsEx(oBuildDataEx, self.sBuildReqExpr);
H A Dtestgroup.py37 from testmanager.core.testcase import TestCaseData, TestCaseDataEx; namespace
158 class TestGroupMemberData2(TestCaseData):
163 TestCaseData.__init__(self)
190 TestCaseData.initFromDbRow(self, aoRow);
H A Dschedgroup.py38 from testmanager.core.testcase import TestCaseData; namespace
732 Returns an array TestCaseData instance (group id, testcase priority and
757 oTestCase = TestCaseData().initFromDbRow(aoRow[2:]);
H A Dtestcase.py390 aoRet.append(TestCaseData().initFromDbRow(aoRow));
396 Returns an array of objects of type TestCaseData on which
414 aoRet.append(TestCaseData().initFromDbRow(aoRow));
418 class TestCaseData(ModelDataBase): class in inherits:ModelDataBase
520 sError = TestCaseData.validateTestBoxReqExpr(oValue);
522 sError = TestCaseData.validateBuildReqExpr(oValue);
524 _, sError = TestCaseData.validateStr(oValue, fAllowUnicodeSymbols=False);
547 return TestCaseData.matchesTestBoxPropsEx(oTestBoxData, self.sTestBoxReqExpr);
557 return TestCaseData.matchesBuildPropsEx(oBuildDataEx, self.sBuildReqExpr);
614 TestCaseData
[all...]
H A Dtestresults.py43 from testmanager.core.testcase import TestCaseData namespace
764 Get a list of unique TestCaseData objects which is appears in the test
783 aoRet.append(TestCaseData().initFromDbWithGenId(self._oDb, aoRow[1], aoRow[2]))

Completed in 63 milliseconds