Frontend\Modules\Search\Tests\Actions\IndexTest::testNotSubmittedSearchIndexDoesNotContainData PHP Method

testNotSubmittedSearchIndexDoesNotContainData() public method

    public function testNotSubmittedSearchIndexDoesNotContainData()
    {
        $client = static::createClient();
        $crawler = $client->request('GET', '/en/search');
        self::assertEquals(200, $client->getResponse()->getStatusCode());
        // result should not yet be found
        self::assertEquals(0, $crawler->filter('html:contains("Blogpost for functional tests")')->count());
    }