Home | History | Annotate | Download | only in common

Lines Matching refs:testObject

193 		const TestClassWithConstructor				testObject	(171899615);
194 const Either<TestClassWithConstructor, int> either (testObject);
202 TCU_CHECK(either.getFirst().getValue() == testObject.getValue());
203 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue());
208 const TestClassWithConstructor testObject (171899615);
209 const Either<int, TestClassWithConstructor> either (testObject);
217 TCU_CHECK(either.getSecond().getValue() == testObject.getValue());
218 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue());
224 const TestClassWithConstructor testObject (171899615);
227 either = testObject;
235 TCU_CHECK(either.getFirst().getValue() == testObject.getValue());
236 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue());
242 const TestClassWithConstructor testObject (171899615);
245 either = testObject;
253 TCU_CHECK(either.getSecond().getValue() == testObject.getValue());
254 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue());
260 const TestClassWithConstructor testObject (171899615);
262 const Either<TestClassWithConstructor, int> otherEither (testObject);
272 TCU_CHECK(either.getFirst().getValue() == testObject.getValue());
273 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue());
279 const TestClassWithConstructor testObject (171899615);
281 const Either<int, TestClassWithConstructor> otherEither (testObject);
291 TCU_CHECK(either.getSecond().getValue() == testObject.getValue());
292 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue());