@@ -19,15 +19,15 @@ protected function tearDown(): void
19
19
Mockery::close ();
20
20
}
21
21
22
- public function testConnectionGetsTheDefaultDatabaseConfiguration ()
22
+ public function test_connection_gets_the_default_database_configuration ()
23
23
{
24
24
$ connection = app (FileMakerConnection::class);
25
25
26
26
$ this ->assertEquals ('filemaker ' , $ connection ->getConfig ('name ' ));
27
27
$ this ->assertEquals ('tester ' , $ connection ->getConfig ('database ' ));
28
28
}
29
29
30
- public function testSetConnectionChangesTheDatabaseConfiguration ()
30
+ public function test_set_connection_changes_the_database_configuration ()
31
31
{
32
32
$ connection = app (FileMakerConnection::class);
33
33
$ this ->assertEquals ('filemaker ' , $ connection ->getConfig ('name ' ));
@@ -39,7 +39,7 @@ public function testSetConnectionChangesTheDatabaseConfiguration()
39
39
$ this ->assertEquals ('tester2 ' , $ connection ->getConfig ('database ' ));
40
40
}
41
41
42
- public function testSetLayoutChangesTheLayoutUsed ()
42
+ public function test_set_layout_changes_the_layout_used ()
43
43
{
44
44
$ connection = app (FileMakerConnection::class);
45
45
$ this ->assertEquals ('' , $ connection ->getLayout ());
@@ -49,7 +49,7 @@ public function testSetLayoutChangesTheLayoutUsed()
49
49
$ this ->assertEquals ('dapi-pet ' , $ connection ->getLayout ());
50
50
}
51
51
52
- public function testDatabasePrefixIsAddedToLayoutNames ()
52
+ public function test_database_prefix_is_added_to_layout_names ()
53
53
{
54
54
$ connection = app (FileMakerConnection::class)->setConnection ('prefix ' );
55
55
@@ -62,7 +62,7 @@ public function testDatabasePrefixIsAddedToLayoutNames()
62
62
$ this ->assertEquals ('dapi-car ' , $ connection ->getLayout ());
63
63
}
64
64
65
- public function testLoginToFileMaker ()
65
+ public function test_login_to_file_maker ()
66
66
{
67
67
$ this ->overrideDBHost ();
68
68
Http::fake ([
@@ -77,7 +77,7 @@ public function testLoginToFileMaker()
77
77
$ this ->assertEquals ('new-token ' , $ token );
78
78
}
79
79
80
- public function testFailedLoginToFileMakerThrow ()
80
+ public function test_failed_login_to_file_maker_throw ()
81
81
{
82
82
$ this ->overrideDBHost ();
83
83
Http::fake ([
0 commit comments