• Home
  • Raw
  • Download

Lines Matching refs:_value

33         self._value = value
36 if self._value != other:
37 …raise signals.TestFailure("Expected \"%s\" to be equal to \"%s\"" % (self._value, other), extras=N…
40 if self._value == other:
41 …raise signals.TestFailure("Expected \"%s\" to not be equal to \"%s\"" % (self._value, other), extr…
44 if self._value is not None:
45 raise signals.TestFailure("Expected \"%s\" to be None" % self._value, extras=None)
48 if self._value is None:
49 raise signals.TestFailure("Expected \"%s\" to not be None" % self._value, extras=None)
64 …NOT_FOR_YOU_assert_event_occurs(self._value, match_fns[0], at_least_times=at_least_times, timeout=…
65 return EventStreamContinuationSubject(self._value)
67 return MultiMatchStreamSubject(self._value, match_fns, timeout)
71 NOT_FOR_YOU_assert_none(self._value, timeout=timeout)
72 return EventStreamContinuationSubject(self._value)
74 NOT_FOR_YOU_assert_none_matching(self._value, match_fns[0], timeout=timeout)
75 return EventStreamContinuationSubject(self._value)
105 …NOT_FOR_YOU_assert_event_occurs(self._value, match_fns[0], at_least_times=at_least_times, timeout=…
106 return EventStreamContinuationSubject(self._value)
108 return MultiMatchStreamSubject(self._value, match_fns, timeout)
112 NOT_FOR_YOU_assert_none(self._value, timeout=timeout)
113 return EventStreamContinuationSubject(self._value)
115 NOT_FOR_YOU_assert_none_matching(self._value, match_fns[0], timeout=timeout)
116 return EventStreamContinuationSubject(self._value)
127 assert_true(self._value, "")
130 assert_false(self._value, "")
139 assert_true(self._value < time_bound, "")