SpiecsEngine
 
Loading...
Searching...
No Matches

◆ SetUp()

void SpicesTest::linked_unordered_map_test::SetUp ( )
inlineoverrideprotected

Testing class initialize function.

Definition at line 25 of file LinkedUnorderedMap_test.h.

25 {
26
27 c0.push_back("aaa", "aaa");
28 c0.push_back("bbb", "bbb");
29 c0.push_back("ccc", "ccc");
30
31 c1.push_back(1, "1");
32 c1.push_back(2, "2");
33 c1.push_back(3, "3");
34
35 c2.push_back(1.0f, "1.0");
36 c2.push_back(2.0f, "2.0");
37 c2.push_back(3.0f, "3.0");
38 }
scl::linked_unordered_map< int, std::string > c1
scl::linked_unordered_map< float, std::string > c2
scl::linked_unordered_map< std::string, std::string > c0
void push_back(const K &key, const V &value)
Add a element to this container.