Skip to content

Commit

Permalink
consistent test method naming
Browse files Browse the repository at this point in the history
  • Loading branch information
anlutro committed May 14, 2015
1 parent 45b56d2 commit f93a46c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/unit/DatabaseSettingStoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ public function correct_data_is_inserted_and_updated()
$store->save();
}

public function testExtraColumnsAreQueried()
/** @test */
public function extra_columns_are_queried()
{
$connection = $this->mockConnection();
$query = $this->mockQuery($connection);
Expand All @@ -54,7 +55,8 @@ public function testExtraColumnsAreQueried()
$this->assertEquals('bar', $store->get('foo'));
}

public function testExtraColumnsAreInserted()
/** @test */
public function extra_columns_are_inserted()
{
$connection = $this->mockConnection();
$query = $this->mockQuery($connection);
Expand Down

0 comments on commit f93a46c

Please sign in to comment.