@@ -15,14 +15,14 @@ public function tearDown()
1515 Mockery::close ();
1616 }
1717
18- public function testInvalidDriverException ()
18+ public function test_invalid_driver_exception ()
1919 {
2020 $ this ->setExpectedException ('PulkitJalan\GeoIP\Exceptions\InvalidDriverException ' );
2121
2222 $ geoip = new \PulkitJalan \GeoIP \GeoIP ([]);
2323 }
2424
25- public function testBadMethodCallException ()
25+ public function test_bad_method_call_exception ()
2626 {
2727 $ this ->setExpectedException ('BadMethodCallException ' );
2828
@@ -31,14 +31,14 @@ public function testBadMethodCallException()
3131 $ geoip ->setNothing ();
3232 }
3333
34- public function testMaxmindException ()
34+ public function test_maxmind_exception ()
3535 {
3636 $ this ->setExpectedException ('PulkitJalan\GeoIP\Exceptions\InvalidCredentialsException ' );
3737
3838 $ geoip = new \PulkitJalan \GeoIP \GeoIP (['driver ' => 'maxmind ' ]);
3939 }
4040
41- public function testMaxmindDatabaseException ()
41+ public function test_maxmind_database_exception ()
4242 {
4343 $ config = [
4444 'driver ' => 'maxmind ' ,
@@ -52,7 +52,7 @@ public function testMaxmindDatabaseException()
5252 $ geoip = new \PulkitJalan \GeoIP \GeoIP ($ config );
5353 }
5454
55- public function testMaxmindInvalidDatabaseException ()
55+ public function test_maxmind_invalid_database_exception ()
5656 {
5757 $ config = [
5858 'driver ' => 'maxmind ' ,
@@ -66,7 +66,7 @@ public function testMaxmindInvalidDatabaseException()
6666 $ geoip = new \PulkitJalan \GeoIP \GeoIP ($ config );
6767 }
6868
69- public function testMaxmindWebApiException ()
69+ public function test_maxmind_web_api_exception ()
7070 {
7171 $ config = [
7272 'driver ' => 'maxmind ' ,
@@ -80,7 +80,7 @@ public function testMaxmindWebApiException()
8080 $ geoip = new \PulkitJalan \GeoIP \GeoIP ($ config );
8181 }
8282
83- public function testMaxmindWebApiAuthenticationException ()
83+ public function test_maxmind_web_api_authentication_exception ()
8484 {
8585 $ config = [
8686 'driver ' => 'maxmind ' ,
@@ -98,7 +98,7 @@ public function testMaxmindWebApiAuthenticationException()
9898 $ geoip ->get ();
9999 }
100100
101- public function testMaxmindDatabase ()
101+ public function test_maxmind_database ()
102102 {
103103 $ config = [
104104 'driver ' => 'maxmind ' ,
@@ -118,7 +118,7 @@ public function testMaxmindDatabase()
118118 $ this ->assertEquals ($ geoip ->getCountry (), '' );
119119 }
120120
121- public function testIpApiProException ()
121+ public function test_ip_api_pro_exception ()
122122 {
123123 $ config = [
124124 'driver ' => 'ip-api ' ,
@@ -136,7 +136,7 @@ public function testIpApiProException()
136136 $ geoip ->get ();
137137 }
138138
139- public function testIpApi ()
139+ public function test_ip_api ()
140140 {
141141 $ config = [
142142 'driver ' => 'ip-api ' ,
@@ -153,7 +153,7 @@ public function testIpApi()
153153 $ this ->assertEquals ($ geoip ->getCountry (), '' );
154154 }
155155
156- public function testTelize ()
156+ public function test_telize ()
157157 {
158158 $ config = [
159159 'driver ' => 'telize ' ,
@@ -170,7 +170,7 @@ public function testTelize()
170170 $ this ->assertEquals ($ geoip ->getCountry (), '' );
171171 }
172172
173- public function testTelizeSecure ()
173+ public function test_telize_secure ()
174174 {
175175 $ config = [
176176 'driver ' => 'telize ' ,
0 commit comments