Fixed test naming

This commit is contained in:
Leonetienne
2022-02-11 11:17:31 +01:00
parent c220cad835
commit 8562e9579e
2 changed files with 12 additions and 12 deletions

View File

@@ -10,21 +10,21 @@ using namespace Eule;
*/
// Checks with a positive input
TEST_CASE("Positive_Value", "[Math][Abs]")
TEST_CASE(__FILE__"/Positive_Value", "[Math][Abs]")
{
REQUIRE(Math::Abs(45.0) == 45.0);
return;
}
// Checks with a negative input
TEST_CASE("Negative_Value", "[Math][Abs]")
TEST_CASE(__FILE__"/Negative_Value", "[Math][Abs]")
{
REQUIRE(Math::Abs(-45.0) == 45);
return;
}
// Checks with a zero input
TEST_CASE("Zero_Value", "[Math][Abs]")
TEST_CASE(__FILE__"/Zero_Value", "[Math][Abs]")
{
REQUIRE(Math::Abs(0.0) == 0.0);
return;