@@ -9,43 +9,38 @@ class FakesSettingsTest extends TestCase
99{
1010 use FakesSettings;
1111
12- /** @test */
13- public function it_can_fake_a_default_setting ()
12+ public function test_it_can_fake_a_default_setting ()
1413 {
1514 $ this ->setFakeDefaultSetting ('daily_limit ' , 20 );
1615
1716 $ this ->assertEquals (20 , default_setting ('daily_limit ' ));
1817 }
1918
20- /** @test */
21- public function it_can_fake_a_setting_with_null_default ()
19+ public function test_it_can_fake_a_setting_with_null_default ()
2220 {
2321 $ this ->setFakeSetting ('app_name ' , 'fake name ' , null );
2422
2523 $ this ->assertNull (default_setting ('app_name ' ));
2624 $ this ->assertEquals ('fake name ' , get_setting ('app_name ' ));
2725 }
2826
29- /** @test */
30- public function it_can_fake_a_setting ()
27+ public function test_it_can_fake_a_setting ()
3128 {
3229 $ this ->setFakeSetting ('app_name ' , 'fake name ' );
3330
3431 $ this ->assertNull (default_setting ('app_name ' ));
3532 $ this ->assertEquals ('fake name ' , get_setting ('app_name ' ));
3633 }
3734
38- /** @test */
39- public function it_can_fake_a_setting_with_a_default ()
35+ public function test_it_can_fake_a_setting_with_a_default ()
4036 {
4137 $ this ->setFakeSetting ('app_name ' , 'fake name ' , 'default name ' );
4238
4339 $ this ->assertEquals ('default name ' , default_setting ('app_name ' ));
4440 $ this ->assertEquals ('fake name ' , get_setting ('app_name ' ));
4541 }
4642
47- /** @test */
48- public function it_can_handle_real_settings_along_with_fake_settings ()
43+ public function test_it_can_handle_real_settings_along_with_fake_settings ()
4944 {
5045 $ this ->app ['config ' ]->set ('defaults.app_name ' , 'Actual Name ' );
5146
0 commit comments