Unit Tests - Record, T2
- Added Record::get, ::set, ::get_int tests. - Added T2 tests. - Fixed Record::composeF4 bug
This commit is contained in:
@@ -59,7 +59,12 @@ std::string Record::composeF4 ()
|
||||
|
||||
bool first = true;
|
||||
foreach (r, (*this))
|
||||
ff4 += (first ? "" : " ") + r->second.composeF4 ();
|
||||
{
|
||||
if (r->second.value () != "")
|
||||
ff4 += (first ? "" : " ") + r->second.composeF4 ();
|
||||
|
||||
first = false;
|
||||
}
|
||||
|
||||
ff4 += "]";
|
||||
return ff4;
|
||||
|
||||
Reference in New Issue
Block a user