Add tests for sphere_point_lies_on_surface and sphere_compute_normal

This commit is contained in:
Eryn Wells 2013-09-09 08:53:19 -07:00
parent 600f93b908
commit ee536de7dc

View file

@ -64,6 +64,20 @@ check_sphere_intersection(Object *sphere, Ray ray, Vector3 *tvectors, int ntvect
}
START_TEST(test_sphere_point_lies_on_surface)
{
ck_assert(0);
}
END_TEST
START_TEST(test_sphere_compute_normal)
{
ck_assert(0);
}
END_TEST
Suite *
test_object_create_suite()
{
@ -71,6 +85,8 @@ test_object_create_suite()
TCase *tc_sphere = tcase_create("sphere");
tcase_add_test(tc_sphere, test_sphere_does_intersect);
tcase_add_test(tc_sphere, test_sphere_point_lies_on_surface);
tcase_add_test(tc_sphere, test_sphere_compute_normal);
suite_add_tcase(s, tc_sphere);
return s;