File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 44
55class CacheTtlTraitTest extends AbstractTest
66{
7- public function testWithCacheTtl ()
7+ public function testCacheTtlTraitWithCacheTtl ()
88 {
99 $ this ->assertSame (
1010 60 * 60 ,
Original file line number Diff line number Diff line change 77
88class LanguageTraitTest extends AbstractTest
99{
10- public function testWithLanguage ()
10+ public function testLanguageTraitWithLanguage ()
1111 {
1212 $ this ->assertSame (
1313 'pt ' ,
@@ -16,7 +16,7 @@ public function testWithLanguage()
1616 }
1717
1818 #[DataProviderExternal(InvalidParamDataProvider::class, 'provideInvalidLanguageData ' )]
19- public function testWithLanguageWithInvalidValue (string $ language , string $ expectedException )
19+ public function testLanguageTraitWithLanguageWithInvalidValue (string $ language , string $ expectedException )
2020 {
2121 $ this ->expectException ($ expectedException );
2222 $ this ->givenApi ()->weather ()->withLanguage ($ language );
Original file line number Diff line number Diff line change 77
88class UnitSystemTraitTest extends AbstractTest
99{
10- public function testWithUnitSystem ()
10+ public function testUnitSystemTraitWithUnitSystem ()
1111 {
1212 $ this ->assertSame (
1313 'imperial ' ,
@@ -16,7 +16,7 @@ public function testWithUnitSystem()
1616 }
1717
1818 #[DataProviderExternal(InvalidParamDataProvider::class, 'provideInvalidUnitSystemData ' )]
19- public function testWithUnitSystemWithInvalidValue (string $ unitSystem , string $ expectedException )
19+ public function testUnitSystemTraitWithUnitSystemWithInvalidValue (string $ unitSystem , string $ expectedException )
2020 {
2121 $ this ->expectException ($ expectedException );
2222 $ this ->givenApi ()->weather ()->withUnitSystem ($ unitSystem );
You can’t perform that action at this time.
0 commit comments