Skip to content

Commit f93a46c

Browse files
committed
consistent test method naming
1 parent 45b56d2 commit f93a46c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/unit/DatabaseSettingStoreTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ public function correct_data_is_inserted_and_updated()
3939
$store->save();
4040
}
4141

42-
public function testExtraColumnsAreQueried()
42+
/** @test */
43+
public function extra_columns_are_queried()
4344
{
4445
$connection = $this->mockConnection();
4546
$query = $this->mockQuery($connection);
@@ -54,7 +55,8 @@ public function testExtraColumnsAreQueried()
5455
$this->assertEquals('bar', $store->get('foo'));
5556
}
5657

57-
public function testExtraColumnsAreInserted()
58+
/** @test */
59+
public function extra_columns_are_inserted()
5860
{
5961
$connection = $this->mockConnection();
6062
$query = $this->mockQuery($connection);

0 commit comments

Comments
 (0)