Social\Model\AddThisTest::setUp PHP 메소드

setUp() 보호된 메소드

This method is called before a test is executed.
protected setUp ( ) : void
리턴 void
    protected function setUp()
    {
        $this->configTable = Mockery::mock('Gc\\Core\\Config');
        $this->configTable->shouldReceive('getValue')->with('module_addthis')->andReturn(serialize(array()));
        $this->object = new AddThis($this->configTable);
    }