Codeception\Module\WPQueriesTest::it_should_not_fail_if_asserting_queries_and_there_were_queries PHP Method

it_should_not_fail_if_asserting_queries_and_there_were_queries() public method

    public function it_should_not_fail_if_asserting_queries_and_there_were_queries()
    {
        $this->wpdb->queries = [['first SQL statement', 'some ms timing', 'a stack trace including Codeception\\TestCase\\WPTestCase->setUp'], ['second SQL statement', 'some ms timing', 'a stack trace including Acme\\MyPlugin->someMethod'], ['seventh SQL statement', 'some ms timing', 'a stack trace including Codeception\\TestCase\\WPTestCase->tearDown']];
        $sut = $this->make_instance();
        $sut->assertQueries();
    }