Skip to content

Commit

Permalink
don't boot kernel on disabled test
Browse files Browse the repository at this point in the history
  • Loading branch information
prgTW committed Feb 16, 2024
1 parent 5baa178 commit c583b5c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Tests/Datagrid/ProxyQueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,13 @@
*/
class ProxyQueryTest extends WebTestCase
{
public function testWithVirtualColumns(): void
public static function setUpBeforeClass(): void
{
$this->markTestIncomplete('This test has not been implemented yet.');
self::markTestIncomplete('This test has not been implemented yet.');
}

public function testWithVirtualColumns(): void
{
// $query = $this->getMockBuilder('\Sonata\TestBundle\Model\BlogPostQuery', array('filterByTitle'))
// ->disableOriginalConstructor()
// ->getMock();
Expand Down

0 comments on commit c583b5c

Please sign in to comment.