Home | History | Annotate | Download | only in bestflags

Lines Matching refs:stage

22   def __init__(self, stage, identifier, cost=0):
26 stage: the stage of this test is in.
32 _cost field will have this cost. The stage field verifies that the module
33 being tested and the unitest are in the same stage. If the unitest does
40 self._stage = stage
51 def GetIdentifier(self, stage):
52 assert stage == self._stage
55 def SetResult(self, stage, cost):
56 assert stage == self._stage
60 def Work(self, stage):
61 assert stage == self._stage
64 def GetResult(self, stage):
65 assert stage == self._stage
68 def Done(self, stage):
71 assert stage == self._stage