1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- require_once('traits/ImportTrait.php');
- require_once('traits/SingleImportTestingTrait.php');
- use Mockery as m;
- class ZerosHandlingReaderTest extends TestCase {
- /**
- * Traits
- */
- use ImportTrait;
- /**
- * Filename
- * @var string
- */
- protected $fileName = 'files/zeros.xls';
- /**
- * @var bool
- */
- protected $noHeadings = false;
- public function testDefaultGet()
- {
- $got = $this->loadedFile->get();
- $this->assertInstanceOf('Maatwebsite\Excel\Collections\RowCollection', $got);
- $this->assertCount(6, $got);
- }
- //
- //public function testStringsAppendedPrependedWithZeros()
- //{
- // $got = $this->loadedFile->toArray();
- //
- // $this->assertContains('TEST000', $got[3]);
- // $this->assertContains('000TEST', $got[4]);
- //}
- //
- //
- //public function testStringZeros()
- //{
- // $got = $this->loadedFile->toArray();
- //
- // $this->assertContains('000', $got[0]);
- //}
- public function testMoney()
- {
- $got = $this->loadedFile->toArray();
- $this->assertContains((double) 0, $got[1]);
- }
- public function testEmptyCellHandling()
- {
- $got = $this->loadedFile->toArray();
- $this->assertContains(null, $got[2]);
- }
- public function testNormalZeros()
- {
- $got = $this->loadedFile->toArray();
- $this->assertContains((double) 0, $got[5]);
- }
- }
|