68 static const uint32_t subframe1[10];
69 static const uint32_t subframe2[10];
70 static const uint32_t subframe3[10];
82 { 0x22C2663D, 0x1F0E29B8, 0x2664002B, 0x09FCC1B6, 0x0F60EB8A,
83 0x1299CE93, 0x29CD3DB6, 0x0597BB0F, 0x00000B68, 0x17B28E5C };
85 { 0x22C2663D, 0x1F0E4A28, 0x05809675, 0x0EBD8AF1, 0x00089344,
86 0x008081F8, 0x1330CC2C, 0x0461E855, 0x034F8045, 0x17BB1E68 };
88 { 0x22C2663D, 0x1F0E6BA0, 0x3FE129CD, 0x26E31837, 0x0006C96A,
89 0x35A74DFC, 0x065C8B0F, 0x1E4F400A, 0x3FE8966D, 0x05860C44 };
105 TestUtil testFramework(
"Rinex",
"run", __FILE__, __LINE__ );
107 std::stringstream before;
108 std::stringstream after;
109 std::string test_desc =
110 "Test equality of data dumps for two data types with the same data.";
111 std::string test_fail =
"These should be equal but they are not.";
116 ee_orig.addSubframe( subframe1, weeknum, 3, 1 );
117 ee_orig.addSubframe( subframe2, weeknum, 3, 1 );
118 ee_orig.addSubframe( subframe3, weeknum, 3, 1 );
119 ee_orig.setFIC(
false);
120 ee_orig.dump( before );
125 ee_copy.setFIC(
false);
126 ee_copy.dump( after );
128 TUASSERTE( std::string, before.str(), after.str() );
137 int check, errorCounter = 0;
139 check = testClass.
run();
140 errorCounter += check;
142 std::cout <<
"Total Failures for " << __FILE__ <<
": " << errorCounter <<