Searched defs:TestGroupData (Results 1 - 7 of 7) sorted by relevance
/vbox/src/VBox/ValidationKit/testmanager/webui/ |
H A D | wuiadminschedgroup.py | 36 from testmanager.core.testgroup import TestGroupData, TestGroupLogic; namespace 137 TestGroupData.ksParam_idTestGroup: oMember.idTestGroup,
|
H A D | wuiadmintestgroup.py | 35 from testmanager.core.testgroup import TestGroupData, TestGroupDataEx; namespace 65 oForm.addIntRO (TestGroupData.ksParam_idTestGroup, self._oData.idTestGroup, 'Test Group ID') 66 oForm.addTimestampRO (TestGroupData.ksParam_tsEffective, self._oData.tsEffective, 'Last changed') 67 oForm.addTimestampRO (TestGroupData.ksParam_tsExpire, self._oData.tsExpire, 'Expires (excl)') 68 oForm.addIntRO (TestGroupData.ksParam_uidAuthor, self._oData.uidAuthor, 'Changed by UID') 69 oForm.addText (TestGroupData.ksParam_sName, self._oData.sName, 'Name') 70 oForm.addText (TestGroupData.ksParam_sDescription, self._oData.sDescription, 'Description') 154 TestGroupData.ksParam_idTestGroup: oEntry.idTestGroup, 159 TestGroupData.ksParam_idTestGroup: oEntry.idTestGroup })); 162 TestGroupData [all...] |
H A D | wuitestresult.py | 41 from testmanager.core.testgroup import TestGroupData; namespace 378 TestGroupData.ksParam_idTestGroup: oTestGroup.idTestGroup,
|
H A D | wuimain.py | 43 from testmanager.core.testgroup import TestGroupData; namespace 798 oTestGroupData = TestGroupData().initFromDbWithId(self._oDb, ## @todo This bogus time wise. Bad DB design?
|
/vbox/src/VBox/ValidationKit/testmanager/core/ |
H A D | testgroup.py | 196 class TestGroupData(ModelDataBase): class in inherits:ModelDataBase 229 Returns object of type TestGroupData. Raises exception if no row. 257 class TestGroupDataEx(TestGroupData): 271 TestGroupData.__init__(self); 315 TestGroupData.initFromDbRow(self, aoRow); 322 TestGroupData.initFromDbWithId(self, oDb, idTestGroup, tsNow, sPeriodBack); 328 return TestGroupData.getAttributeParamNullValues(self, sAttr); 333 return TestGroupData.convertParamToAttribute(self, sAttr, sParam, oValue, oDisp, fStrict); 349 return TestGroupData._validateAndConvertAttribute(self, sAttr, sParam, oValue, aoNilValues, fAllowNull, oDb); 560 Return list of objects of type TestGroupData ordere [all...] |
H A D | schedgroup.py | 41 from testmanager.core.testgroup import TestGroupData; namespace 126 self.oTestGroup = TestGroupData().initFromDbRow(aoRow[8:]); 137 self.oTestGroup = TestGroupData(); 141 self.oTestGroup = TestGroupData()
|
H A D | testresults.py | 40 from testmanager.core.testgroup import TestGroupData namespace 693 Get list of uniq TestGroupData objects which 708 aoRet.append(TestGroupData().initFromDbRow(aoRow))
|
Completed in 81 milliseconds