aboutsummaryrefslogtreecommitdiff
path: root/test.cc
AgeCommit message (Collapse)Author
2014-02-06Introduced simple result wrapper templateAdrian Kummerländer
* offers bool() operator for easy assignment checks inside conditional statements
2014-02-06Added support for changing valuesAdrian Kummerländer
* member method set changes the value of a given path to the provided value ** returns false if the specified path doesn't exist
2014-02-06Implemented trie value supportAdrian Kummerländer
* template can now be specialized on a value type * simple existance check of trie paths can be achieved using the check member method * new get member method can be used to query values ** values are stored as std::pair<bool, Value> to make them optional * expanded test cases accordingly
2014-02-05Added CMake build instructions and test casesAdrian Kummerländer
* Test cases are based on GoogleTest and are executed automatically after each compile * Updated README.md accordingly
2014-02-04Moved Trie template into src directoryAdrian Kummerländer
* renamed trie.cc to test.cc in preparation for implementing GoogleTest based test cases