re-organisation of files

This commit is contained in:
hugogogo
2022-06-17 15:30:58 +02:00
parent a939bfc66f
commit 72762a79cb
11 changed files with 1165 additions and 812 deletions

View File

@@ -27,8 +27,8 @@ void add_to_list(std::string s, A_test* s1, A_test* s2, A_test* s3, A_test* s4)
}
// *********************************************
// prototypes
// **************************************
// prototypes vector
void tests_vector_constructor();
void tests_vector_operator_assignation();
void tests_vector_begin();
@@ -57,5 +57,33 @@ void tests_vector_relational_operators();
void tests_vector_swap_non_member();
void tests_vector_reverse_iterators();
// *****************************************
// prototypes map
void tests_map_simple();
//void tests_map_constructor();
//void tests_map_operator_assignation();
//void tests_map_begin();
//void tests_map_end();
//void tests_map_rbegin();
//void tests_map_rend();
//void tests_map_empty();
//void tests_map_size();
//void tests_map_max_size();
//void tests_map_operator_access();
//void tests_map_insert();
//void tests_map_erase();
//void tests_map_swap();
//void tests_map_clear();
//void tests_map_key_comp();
//void tests_map_value_comp();
//void tests_map_find();
//void tests_map_count();
//void tests_map_lower_bound();
//void tests_map_upper_bound();
//void tests_map_equal_range();
//void tests_map_get_allocator();
#endif