Social\Model\AddThisTest::setUp PHP Method

setUp() protected method

This method is called before a test is executed.
protected setUp ( ) : void
return 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);
    }