public function test__checkStateForExistingPeriod_started()
 {
     /** === Test Data === */
     $RESULT = new \Praxigento\BonusBase\Service\Period\Response\GetForPvBasedCalc();
     $CALC_TYPE_ID = 4;
     $PERIOD_TYPE = \Praxigento\Core\Tool\IPeriod::TYPE_DAY;
     $PERIOD = new \Praxigento\BonusBase\Data\Entity\Period();
     $CALC = new \Praxigento\BonusBase\Data\Entity\Calculation();
     /** === Setup Mocks === */
     // if ($calcData->getState() == Cfg::CALC_STATE_COMPLETE) {...}
     $CALC->setState(Cfg::CALC_STATE_STARTED);
     /** === Call and asserts  === */
     $res = $this->obj->_checkStateForExistingPeriod($RESULT, $CALC_TYPE_ID, $PERIOD_TYPE, $PERIOD, $CALC);
     $this->assertEquals($CALC, $res->getCalcData());
 }