Ejemplo n.º 1
0
int main()
{
	plan(20);
	test_uints();
	test_ints();
	test_bools();
	test_floats();
	test_doubles();
	test_nils();
	test_strls();
	test_binls();
	test_strs();
	test_bins();
	test_arrays();
	test_maps();
	test_next_on_arrays();
	test_next_on_maps();
	test_compare_uints();
	test_format();
	test_mp_print();
	test_mp_check();
	test_numbers();
	test_overflow();

	return check_plan();
}
Ejemplo n.º 2
0
int main(int argc, char* argv[]) {
  TEnv Env(argc, argv);
  TStr PrefixPath = Env.GetArgs() > 1 ? Env.GetArg(1) : TStr("");
  test_ints();
  test_strs();
  return 0;
}
Ejemplo n.º 3
0
int main()
{
    plan(15);

    test_uints();
    test_ints();
    test_bools();
    test_floats();
    test_doubles();
    test_nils();
    test_strls();
    test_binls();
    test_strs();
    test_bins();
    test_arrays();
    test_maps();
    test_next_on_arrays();
    test_next_on_maps();
    test_compare_uints();

    return check_plan();
}