int main ()
{
	std::cout << "test_string_literal" << ": " << test_string_literal() << std::endl;
	std::cout << "test_advance_copy" << ": " << test_advance_copy() << std::endl;
	std::cout << "test_iter_at" << ": " << test_iter_at() << std::endl;
	std::cout << "test_get_equivalent_iterator" << ": " << test_get_equivalent_iterator() << std::endl;
	std::cout << "test_pair_first_equal_to" << ": " << test_pair_first_equal_to() << std::endl;
	std::cout << "test_pair_second_equal_to" << ": " << test_pair_second_equal_to() << std::endl;
	//std::cout << "test_make_ostream_iterator" << ": " << test_make_ostream_iterator() << std::endl;

	std::cout << "test_pair_printer" << ": " << test_pair_printer() << std::endl;
	std::cout << "test_container_printer" << ": " << test_container_printer() << std::endl;



	return 0;
}
Exemple #2
0
int main () {
	test_string_literal("Hello, there");
	test_string_literal("With a \0 null");

	return(0);
}