File: Zf2LogAdapterTest.php

package info (click to toggle)
php-guzzle 3.9.1%2Bdfsg-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 4,032 kB
  • sloc: php: 31,279; xml: 176; makefile: 140; python: 45; sh: 5
file content (42 lines) | stat: -rw-r--r-- 839 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

namespace Guzzle\Tests\Log;

use Guzzle\Log\Zf2LogAdapter;
use Zend\Log\Logger;
use Zend\Log\Writer\Stream;

/**
 * @covers Guzzle\Log\Zf2LogAdapter
 */
class Zf2LogAdapterTest extends \Guzzle\Tests\GuzzleTestCase
{
    /** @var Zf2LogAdapter */
    protected $adapter;

    /** @var Logger */
    protected $log;

    /** @var resource */
    protected $stream;

    protected function setUp()
    {
        $this->stream = fopen('php://temp', 'r+');
    }

    public function testLogsMessagesToAdaptedObject()
    {
        // Test without a priority
        rewind($this->stream);
        $contents = stream_get_contents($this->stream);

        // Test with a priority
        rewind($this->stream);
        $contents = stream_get_contents($this->stream);
    }

    public function testExposesAdaptedLogObject()
    {
    }
}