예제 #1
0
void unit_tests()
{
    test_buffer();
    test_additions();
    test_copy_constructor();
    test_iteration();
    test_rw_aggr_buf();
    test_non_contiguous();
}
예제 #2
0
파일: basic.cpp 프로젝트: cholmquist/tables
int main(int argc, char* argv[])
{
	test_basic();
	test_iteration();
	test_find();
	test_erase();
	test_list();
	test_unordered();
	int a = sizeof(obj);
	int b = sizeof(boost::optional<obj&>);
	int xx = 0;
	return boost::report_errors();
}