Completed
Push — master ( e42a4c...f187a0 )
by Daniel
03:17
created

tests/CommentsGridFieldBulkActionTest.php (2 issues)

Labels
Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
class CommentsGridFieldBulkActionTest extends SapphireTest {
4
	public function testSpam() {
5
		$this->markTestSkipped('TODO');
0 ignored issues
show
The method markTestSkipped() does not seem to exist on object<CommentsGridFieldBulkActionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
6
	}
7
8
	public function testApprove() {
9
		$this->markTestSkipped('TODO');
0 ignored issues
show
The method markTestSkipped() does not seem to exist on object<CommentsGridFieldBulkActionTest>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
10
	}
11
12
}
13