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);
    }