GuzzleHttp\Tests\MessageFormatterTest::testFormatsTimestamps PHP Method

testFormatsTimestamps() public method

public testFormatsTimestamps ( $format, $pattern )
    public function testFormatsTimestamps($format, $pattern)
    {
        $f = new MessageFormatter($format);
        $request = new Request('GET', '/');
        $result = $f->format($request);
        $this->assertEquals(1, preg_match($pattern, $result));
    }