Example #1
0
void ConditionTest::testEq()
{
    TestEq<int> testEq(5);
    testEq.open();
    testEq.wait();
    assertLongsEqual(testEq.value(), 0);

}
Example #2
0
void ConditionTest::runTest()
{
    testNe();
    testEq();
    testGe();
    testGt();
    testLe();
    testLt();
}
Example #3
0
void testObj::test<3>(void)
{
  auto out = fromHex("");
  testEq(out, "");
}
Example #4
0
void testObj::test<4>(void)
{
  auto out = fromHex("414243");
  testEq(out, "ABC");
}
Example #5
0
void testObj::test<7>(void)
{
  auto out = fromHex("404142434445464748494a4B4c4D4e4F");
  testEq(out, "@ABCDEFGHIJKLMNO");
}