diff tests/libclient/line/main.cpp @ 53:fe7e3524e571

Tests: various style fixes
author David Demelier <markand@malikania.fr>
date Fri, 16 Dec 2016 13:07:44 +0100
parents f30c84b4b9ed
children 858621081b95
line wrap: on
line diff
--- a/tests/libclient/line/main.cpp	Thu Dec 15 13:46:46 2016 +0100
+++ b/tests/libclient/line/main.cpp	Fri Dec 16 13:07:44 2016 +0100
@@ -55,14 +55,14 @@
     BOOST_REQUIRE_EQUAL(40, line.y2());
 }
 
-BOOST_AUTO_TEST_CASE(operatorEq)
+BOOST_AUTO_TEST_CASE(operator_eq)
 {
     mlk::line line1, line2;
 
     BOOST_REQUIRE_EQUAL(line1, line2);
 }
 
-BOOST_AUTO_TEST_CASE(operatorEq1)
+BOOST_AUTO_TEST_CASE(operator_eq1)
 {
     mlk::line line1(10, 20, 30, 40);
     mlk::line line2(10, 20, 30, 40);
@@ -70,7 +70,7 @@
     BOOST_REQUIRE_EQUAL(line1, line2);
 }
 
-BOOST_AUTO_TEST_CASE(operatorNeq)
+BOOST_AUTO_TEST_CASE(operator_neq)
 {
     BOOST_REQUIRE_NE(mlk::line(10), mlk::line(20));
     BOOST_REQUIRE_NE(mlk::line(10, 10), mlk::line(10, 20));