[FIX] Just rename tests
This commit is contained in:
@@ -33,7 +33,7 @@ using namespace Raytracer;
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("colors are (red,green,blue) tuples", "[Colors]")
|
||||
TEST_CASE("[Color] colors are (red,green,blue) tuples", "[Colors]")
|
||||
{
|
||||
Color c(-0.5, 0.4, 1.7);
|
||||
|
||||
@@ -44,7 +44,7 @@ TEST_CASE("colors are (red,green,blue) tuples", "[Colors]")
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("Colors could be copied", "[Colors]")
|
||||
TEST_CASE("[Color] Colors could be copied", "[Colors]")
|
||||
{
|
||||
Color c1(-0.5, 0.4, 1.7);
|
||||
Color c2;
|
||||
@@ -58,7 +58,7 @@ TEST_CASE("Colors could be copied", "[Colors]")
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("Adding colors", "[Colors]")
|
||||
TEST_CASE("[Color] Adding colors", "[Colors]")
|
||||
{
|
||||
Color c1(0.9, 0.6, 0.75);
|
||||
Color c2(0.7, 0.1, 0.25);
|
||||
@@ -68,7 +68,7 @@ TEST_CASE("Adding colors", "[Colors]")
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("Adding colors without modify c1", "[Colors]")
|
||||
TEST_CASE("[Color] Adding colors without modify c1", "[Colors]")
|
||||
{
|
||||
Color c1(0.9, 0.6, 0.75);
|
||||
Color c2(0.7, 0.1, 0.25);
|
||||
@@ -80,7 +80,7 @@ TEST_CASE("Adding colors without modify c1", "[Colors]")
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("Subtracting colors", "[Colors]")
|
||||
TEST_CASE("[Color] Subtracting colors", "[Colors]")
|
||||
{
|
||||
Color c1(0.9, 0.6, 0.75);
|
||||
Color c2(0.7, 0.1, 0.25);
|
||||
@@ -90,7 +90,7 @@ TEST_CASE("Subtracting colors", "[Colors]")
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("Subtracting colors without modify c1", "[Colors]")
|
||||
TEST_CASE("[Color] Subtracting colors without modify c1", "[Colors]")
|
||||
{
|
||||
Color c1(0.9, 0.6, 0.75);
|
||||
Color c2(0.7, 0.1, 0.25);
|
||||
@@ -102,7 +102,7 @@ TEST_CASE("Subtracting colors without modify c1", "[Colors]")
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("Multiplying a color by a scalar", "[Colors]")
|
||||
TEST_CASE("[Color] Multiplying a color by a scalar", "[Colors]")
|
||||
{
|
||||
Color c(0.2, 0.3, 0.4);
|
||||
|
||||
@@ -111,7 +111,7 @@ TEST_CASE("Multiplying a color by a scalar", "[Colors]")
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("Multiplying a color by a scalar without modify c", "[Colors]")
|
||||
TEST_CASE("[Color] Multiplying a color by a scalar without modify c", "[Colors]")
|
||||
{
|
||||
Color c(0.2, 0.3, 0.4);
|
||||
|
||||
@@ -122,7 +122,7 @@ TEST_CASE("Multiplying a color by a scalar without modify c", "[Colors]")
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
|
||||
TEST_CASE("Multiplying a colors", "[Colors]")
|
||||
TEST_CASE("[Color] Multiplying a colors", "[Colors]")
|
||||
{
|
||||
Color c1(1, 0.2, 0.4);
|
||||
Color c2(0.9, 1, 0.1);
|
||||
|
||||
Reference in New Issue
Block a user