We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89dabb5 commit c70a1b9Copy full SHA for c70a1b9
tests/TestMslsOptionsQueryAuthor.php
@@ -14,11 +14,11 @@ protected function setUp(): void {
14
$this->test = new MslsOptionsQueryAuthor();
15
}
16
17
- function test_has_value_method() {
+ public function test_has_value_method(): void {
18
$this->assertIsBool( $this->test->has_value( 'de_DE' ) );
19
20
21
- function test_get_current_link_method() {
+ public function test_get_current_link_method(): void {
22
Functions\expect( 'get_author_posts_url' )->once()->andReturn( 'https://example.org/queried-author' );
23
24
$this->assertEquals( 'https://example.org/queried-author', $this->test->get_current_link() );
0 commit comments