Simple scan implementation in ParserIntItem added. DeckIntItem now support push_back

This commit is contained in:
Kristian Flikka
2013-05-08 14:31:20 +02:00
parent 2d6e6842d6
commit 2088c3e96d
15 changed files with 116 additions and 43 deletions

View File

@@ -72,6 +72,6 @@ BOOST_AUTO_TEST_CASE(ParseFullTestFile) {
const std::string& recordString = records.front()->getRecordString();
BOOST_CHECK_EQUAL("20 20 15 15 15 50", recordString);
std::vector<std::string> recordItems = records.front()->getItems();
std::deque<std::string> recordItems = records.front()->getItems();
BOOST_CHECK_EQUAL((unsigned) 6, recordItems.size());
}