Fixed test naming
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user