cellStub = $this->getMockBuilder('\\PHPExcel\\Cell') ->disableOriginalConstructor() ->getMock(); // Configure the stub. $this->cellStub->expects($this->any()) ->method('setValueExplicit') ->will($this->returnValue(true)); } /** * @dataProvider binderProvider */ public function testBindValue($value) { $this->createCellStub(); $binder = new \PHPExcel\Cell\DefaultValueBinder(); $result = $binder->bindValue($this->cellStub, $value); $this->assertTrue($result); } public function binderProvider() { return array( array(null), array(''), array('ABC'), array('=SUM(A1:B2)'), array(true), array(false), array(123), array(-123.456), array('123'), array('-123.456'), array('#REF!'), array(new \DateTime()), ); } /** * @dataProvider providerDataTypeForValue */ public function testDataTypeForValue() { list($args, $expectedResult) = func_get_args(); $result = call_user_func_array(array('\\PHPExcel\\Cell\\DefaultValueBinder','dataTypeForValue'), $args); $this->assertEquals($expectedResult, $result); } public function providerDataTypeForValue() { return new testDataFileIteratorJson('rawTestData/Cell/DefaultValueBinder.json'); } public function testDataTypeForRichTextObject() { $objRichText = new \PHPExcel\RichText(); $objRichText->createText('Hello World'); $expectedResult = \PHPExcel\Cell\DataType::TYPE_INLINE; $result = call_user_func(array('\\PHPExcel\\Cell\\DefaultValueBinder','dataTypeForValue'), $objRichText); $this->assertEquals($expectedResult, $result); } }