Google\Cloud\Tests\Snippets\Logging\EntryTest::testInfo PHP Method

testInfo() public method

public testInfo ( )
    public function testInfo()
    {
        $info = ['textPayload' => 'bar'];
        $entry = new Entry($info);
        $snippet = $this->snippetFromMethod(Entry::class, 'info');
        $snippet->addLocal('entry', $entry);
        $res = $snippet->invoke();
        $this->assertEquals($info['textPayload'], $res->output());
    }