Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase (#271)

Use the `PHPUnit\Framework\TestCase` notation instead of `PHPUnit_Framework_TestCase` while extending our TestCases. This will help us migrate to PHPUnit 6, that [no longer support snake case class names](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-6.0.md#changed-1).
This commit is contained in:
Gabriel Caruso 2017-11-08 13:48:01 -02:00 committed by Adrien Crivelli
parent 442e612202
commit aed27a0bed
51 changed files with 102 additions and 102 deletions

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation; use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class CalculationTest extends PHPUnit_Framework_TestCase class CalculationTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -5,12 +5,12 @@ namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\DateTime; use PhpOffice\PhpSpreadsheet\Calculation\DateTime;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Shared\Date; use PhpOffice\PhpSpreadsheet\Shared\Date;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
/** /**
* Class DateTimeTest. * Class DateTimeTest.
*/ */
class DateTimeTest extends PHPUnit_Framework_TestCase class DateTimeTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Engineering; use PhpOffice\PhpSpreadsheet\Calculation\Engineering;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheetTests\Custom\ComplexAssert; use PhpOffice\PhpSpreadsheetTests\Custom\ComplexAssert;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class EngineeringTest extends PHPUnit_Framework_TestCase class EngineeringTest extends TestCase
{ {
/** /**
* @var ComplexAssert * @var ComplexAssert

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Financial; use PhpOffice\PhpSpreadsheet\Calculation\Financial;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class FinancialTest extends PHPUnit_Framework_TestCase class FinancialTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Calculation; namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class FunctionsTest extends PHPUnit_Framework_TestCase class FunctionsTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\Logical; use PhpOffice\PhpSpreadsheet\Calculation\Logical;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class LogicalTest extends PHPUnit_Framework_TestCase class LogicalTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -4,12 +4,12 @@ namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\LookupRef; use PhpOffice\PhpSpreadsheet\Calculation\LookupRef;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
/** /**
* Class LookupRefTest. * Class LookupRefTest.
*/ */
class LookupRefTest extends PHPUnit_Framework_TestCase class LookupRefTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Calculation; use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\MathTrig; use PhpOffice\PhpSpreadsheet\Calculation\MathTrig;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class MathTrigTest extends PHPUnit_Framework_TestCase class MathTrigTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -6,9 +6,9 @@ use PhpOffice\PhpSpreadsheet\Calculation\Calculation;
use PhpOffice\PhpSpreadsheet\Calculation\Functions; use PhpOffice\PhpSpreadsheet\Calculation\Functions;
use PhpOffice\PhpSpreadsheet\Calculation\TextData; use PhpOffice\PhpSpreadsheet\Calculation\TextData;
use PhpOffice\PhpSpreadsheet\Shared\StringHelper; use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class TextDataTest extends PHPUnit_Framework_TestCase class TextDataTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -9,9 +9,9 @@ use PhpOffice\PhpSpreadsheet\Collection\Cells;
use PhpOffice\PhpSpreadsheet\Shared\StringHelper; use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
use PhpOffice\PhpSpreadsheet\Style\NumberFormat; use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class AdvancedValueBinderTest extends PHPUnit_Framework_TestCase class AdvancedValueBinderTest extends TestCase
{ {
public function provider() public function provider()
{ {

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Cell;
use PhpOffice\PhpSpreadsheet\Cell\Cell; use PhpOffice\PhpSpreadsheet\Cell\Cell;
use PhpOffice\PhpSpreadsheet\Exception; use PhpOffice\PhpSpreadsheet\Exception;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class CellTest extends PHPUnit_Framework_TestCase class CellTest extends TestCase
{ {
/** /**
* @dataProvider providerColumnString * @dataProvider providerColumnString

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Cell; namespace PhpOffice\PhpSpreadsheetTests\Cell;
use PhpOffice\PhpSpreadsheet\Cell\DataType; use PhpOffice\PhpSpreadsheet\Cell\DataType;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class DataTypeTest extends PHPUnit_Framework_TestCase class DataTypeTest extends TestCase
{ {
public function testGetErrorCodes() public function testGetErrorCodes()
{ {

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Cell;
use PhpOffice\PhpSpreadsheet\Cell\DataValidation; use PhpOffice\PhpSpreadsheet\Cell\DataValidation;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class DataValidatorTest extends PHPUnit_Framework_TestCase class DataValidatorTest extends TestCase
{ {
public function testNoValidation() public function testNoValidation()
{ {

View File

@ -7,9 +7,9 @@ use PhpOffice\PhpSpreadsheet\Cell\Cell;
use PhpOffice\PhpSpreadsheet\Cell\DataType; use PhpOffice\PhpSpreadsheet\Cell\DataType;
use PhpOffice\PhpSpreadsheet\Cell\DefaultValueBinder; use PhpOffice\PhpSpreadsheet\Cell\DefaultValueBinder;
use PhpOffice\PhpSpreadsheet\RichText\RichText; use PhpOffice\PhpSpreadsheet\RichText\RichText;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class DefaultValueBinderTest extends PHPUnit_Framework_TestCase class DefaultValueBinderTest extends TestCase
{ {
protected $cellStub; protected $cellStub;

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Cell; namespace PhpOffice\PhpSpreadsheetTests\Cell;
use PhpOffice\PhpSpreadsheet\Cell\Hyperlink; use PhpOffice\PhpSpreadsheet\Cell\Hyperlink;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class HyperlinkTest extends PHPUnit_Framework_TestCase class HyperlinkTest extends TestCase
{ {
public function testGetUrl() public function testGetUrl()
{ {

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Chart;
use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues; use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues;
use PhpOffice\PhpSpreadsheet\Exception; use PhpOffice\PhpSpreadsheet\Exception;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class DataSeriesValuesTest extends PHPUnit_Framework_TestCase class DataSeriesValuesTest extends TestCase
{ {
public function testSetDataType() public function testSetDataType()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Chart; namespace PhpOffice\PhpSpreadsheetTests\Chart;
use PhpOffice\PhpSpreadsheet\Chart\Layout; use PhpOffice\PhpSpreadsheet\Chart\Layout;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class LayoutTest extends PHPUnit_Framework_TestCase class LayoutTest extends TestCase
{ {
public function testSetLayoutTarget() public function testSetLayoutTarget()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Chart; namespace PhpOffice\PhpSpreadsheetTests\Chart;
use PhpOffice\PhpSpreadsheet\Chart\Legend; use PhpOffice\PhpSpreadsheet\Chart\Legend;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class LegendTest extends PHPUnit_Framework_TestCase class LegendTest extends TestCase
{ {
public function testSetPosition() public function testSetPosition()
{ {

View File

@ -7,9 +7,9 @@ use PhpOffice\PhpSpreadsheet\Collection\Cells;
use PhpOffice\PhpSpreadsheet\Collection\Memory; use PhpOffice\PhpSpreadsheet\Collection\Memory;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class CellsTest extends PHPUnit_Framework_TestCase class CellsTest extends TestCase
{ {
public function testCollectionCell() public function testCollectionCell()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Helper; namespace PhpOffice\PhpSpreadsheetTests\Helper;
use PhpOffice\PhpSpreadsheet\Helper\Migrator; use PhpOffice\PhpSpreadsheet\Helper\Migrator;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class MigratorTest extends PHPUnit_Framework_TestCase class MigratorTest extends TestCase
{ {
public function testMappingOnlyContainExistingClasses() public function testMappingOnlyContainExistingClasses()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Sample; namespace PhpOffice\PhpSpreadsheetTests\Sample;
use PhpOffice\PhpSpreadsheet\Helper\Sample; use PhpOffice\PhpSpreadsheet\Helper\Sample;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class SampleTest extends PHPUnit_Framework_TestCase class SampleTest extends TestCase
{ {
/** /**
* @runInSeparateProcess * @runInSeparateProcess

View File

@ -6,9 +6,9 @@ use PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\Reader; use PhpOffice\PhpSpreadsheet\Reader;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Writer; use PhpOffice\PhpSpreadsheet\Writer;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class IOFactoryTest extends PHPUnit_Framework_TestCase class IOFactoryTest extends TestCase
{ {
/** /**
* @dataProvider providerCreateWriter * @dataProvider providerCreateWriter

View File

@ -6,9 +6,9 @@ use PhpOffice\PhpSpreadsheet\Reader\Csv as ReaderCsv;
use PhpOffice\PhpSpreadsheet\Shared\File; use PhpOffice\PhpSpreadsheet\Shared\File;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Writer\Csv as WriterCsv; use PhpOffice\PhpSpreadsheet\Writer\Csv as WriterCsv;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class CsvTest extends PHPUnit_Framework_TestCase class CsvTest extends TestCase
{ {
public function testEnclosure() public function testEnclosure()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Reader; namespace PhpOffice\PhpSpreadsheetTests\Reader;
use PhpOffice\PhpSpreadsheet\Reader\Html; use PhpOffice\PhpSpreadsheet\Reader\Html;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class HtmlTest extends PHPUnit_Framework_TestCase class HtmlTest extends TestCase
{ {
public function testCsvWithAngleBracket() public function testCsvWithAngleBracket()
{ {

View File

@ -6,12 +6,12 @@ use PhpOffice\PhpSpreadsheet\Cell\DataType;
use PhpOffice\PhpSpreadsheet\Reader\Ods; use PhpOffice\PhpSpreadsheet\Reader\Ods;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Style\Font; use PhpOffice\PhpSpreadsheet\Style\Font;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
/** /**
* @todo The class doesn't read the bold/italic/underline properties (rich text) * @todo The class doesn't read the bold/italic/underline properties (rich text)
*/ */
class OdsTest extends PHPUnit_Framework_TestCase class OdsTest extends TestCase
{ {
/** /**
* @var Spreadsheet * @var Spreadsheet

View File

@ -6,9 +6,9 @@ use PhpOffice\PhpSpreadsheet\Cell\DataType;
use PhpOffice\PhpSpreadsheet\Reader\BaseReader; use PhpOffice\PhpSpreadsheet\Reader\BaseReader;
use PhpOffice\PhpSpreadsheet\Reader\Xml; use PhpOffice\PhpSpreadsheet\Reader\Xml;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class XEEValidatorTest extends PHPUnit_Framework_TestCase class XEEValidatorTest extends TestCase
{ {
/** /**
* @var Spreadsheet * @var Spreadsheet

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Reader; namespace PhpOffice\PhpSpreadsheetTests\Reader;
use PhpOffice\PhpSpreadsheet\Reader\Xlsx; use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class XlsxTest extends PHPUnit_Framework_TestCase class XlsxTest extends TestCase
{ {
/** /**
* Test load Xlsx file without cell reference. * Test load Xlsx file without cell reference.

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests; namespace PhpOffice\PhpSpreadsheetTests;
use PhpOffice\PhpSpreadsheet\ReferenceHelper; use PhpOffice\PhpSpreadsheet\ReferenceHelper;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class ReferenceHelperTest extends PHPUnit_Framework_TestCase class ReferenceHelperTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests; namespace PhpOffice\PhpSpreadsheetTests;
use PhpOffice\PhpSpreadsheet\Settings; use PhpOffice\PhpSpreadsheet\Settings;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class SettingsTest extends PHPUnit_Framework_TestCase class SettingsTest extends TestCase
{ {
/** /**
* @var string * @var string

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Exception; use PhpOffice\PhpSpreadsheet\Exception;
use PhpOffice\PhpSpreadsheet\Shared\CodePage; use PhpOffice\PhpSpreadsheet\Shared\CodePage;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class CodePageTest extends PHPUnit_Framework_TestCase class CodePageTest extends TestCase
{ {
/** /**
* @dataProvider providerCodePage * @dataProvider providerCodePage

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Shared; namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Shared\Date; use PhpOffice\PhpSpreadsheet\Shared\Date;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class DateTest extends PHPUnit_Framework_TestCase class DateTest extends TestCase
{ {
public function testSetExcelCalendar() public function testSetExcelCalendar()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Shared; namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Shared\File; use PhpOffice\PhpSpreadsheet\Shared\File;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class FileTest extends PHPUnit_Framework_TestCase class FileTest extends TestCase
{ {
public function testGetUseUploadTempDirectory() public function testGetUseUploadTempDirectory()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Shared; namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Shared\Font; use PhpOffice\PhpSpreadsheet\Shared\Font;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class FontTest extends PHPUnit_Framework_TestCase class FontTest extends TestCase
{ {
public function testGetAutoSizeMethod() public function testGetAutoSizeMethod()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Shared; namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Shared\PasswordHasher; use PhpOffice\PhpSpreadsheet\Shared\PasswordHasher;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class PasswordHasherTest extends PHPUnit_Framework_TestCase class PasswordHasherTest extends TestCase
{ {
/** /**
* @dataProvider providerHashPassword * @dataProvider providerHashPassword

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Shared; namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Shared\StringHelper; use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class StringHelperTest extends PHPUnit_Framework_TestCase class StringHelperTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Shared; namespace PhpOffice\PhpSpreadsheetTests\Shared;
use PhpOffice\PhpSpreadsheet\Shared\TimeZone; use PhpOffice\PhpSpreadsheet\Shared\TimeZone;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class TimeZoneTest extends PHPUnit_Framework_TestCase class TimeZoneTest extends TestCase
{ {
public function testSetTimezone() public function testSetTimezone()
{ {

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Style;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Style\Border; use PhpOffice\PhpSpreadsheet\Style\Border;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class BorderTest extends PHPUnit_Framework_TestCase class BorderTest extends TestCase
{ {
public function testCase() public function testCase()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Style; namespace PhpOffice\PhpSpreadsheetTests\Style;
use PhpOffice\PhpSpreadsheet\Style\Color; use PhpOffice\PhpSpreadsheet\Style\Color;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class ColorTest extends PHPUnit_Framework_TestCase class ColorTest extends TestCase
{ {
/** /**
* @dataProvider providerColorGetRed * @dataProvider providerColorGetRed

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Style;
use PhpOffice\PhpSpreadsheet\Shared\StringHelper; use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
use PhpOffice\PhpSpreadsheet\Style\NumberFormat; use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class NumberFormatTest extends PHPUnit_Framework_TestCase class NumberFormatTest extends TestCase
{ {
public function setUp() public function setUp()
{ {

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Worksheet\AutoFilter\Column; namespace PhpOffice\PhpSpreadsheetTests\Worksheet\AutoFilter\Column;
use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column; use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class RuleTest extends PHPUnit_Framework_TestCase class RuleTest extends TestCase
{ {
private $testAutoFilterRuleObject; private $testAutoFilterRuleObject;
private $mockAutoFilterColumnObject; private $mockAutoFilterColumnObject;

View File

@ -3,9 +3,9 @@
namespace PhpOffice\PhpSpreadsheetTests\Worksheet\AutoFilter; namespace PhpOffice\PhpSpreadsheetTests\Worksheet\AutoFilter;
use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter; use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class ColumnTest extends PHPUnit_Framework_TestCase class ColumnTest extends TestCase
{ {
private $testInitialColumn = 'H'; private $testInitialColumn = 'H';
private $testAutoFilterColumnObject; private $testAutoFilterColumnObject;

View File

@ -6,9 +6,9 @@ use PhpOffice\PhpSpreadsheet\Collection\Cells;
use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter; use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter;
use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column; use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class AutoFilterTest extends PHPUnit_Framework_TestCase class AutoFilterTest extends TestCase
{ {
private $testInitialRange = 'H2:O256'; private $testInitialRange = 'H2:O256';
/** /**

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
use PhpOffice\PhpSpreadsheet\Cell\Cell; use PhpOffice\PhpSpreadsheet\Cell\Cell;
use PhpOffice\PhpSpreadsheet\Worksheet\ColumnCellIterator; use PhpOffice\PhpSpreadsheet\Worksheet\ColumnCellIterator;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class ColumnCellIteratorTest extends PHPUnit_Framework_TestCase class ColumnCellIteratorTest extends TestCase
{ {
public $mockWorksheet; public $mockWorksheet;
public $mockCell; public $mockCell;

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
use PhpOffice\PhpSpreadsheet\Worksheet\Column; use PhpOffice\PhpSpreadsheet\Worksheet\Column;
use PhpOffice\PhpSpreadsheet\Worksheet\ColumnIterator; use PhpOffice\PhpSpreadsheet\Worksheet\ColumnIterator;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class ColumnIteratorTest extends PHPUnit_Framework_TestCase class ColumnIteratorTest extends TestCase
{ {
public $mockWorksheet; public $mockWorksheet;
public $mockColumn; public $mockColumn;

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
use PhpOffice\PhpSpreadsheet\Worksheet\Column; use PhpOffice\PhpSpreadsheet\Worksheet\Column;
use PhpOffice\PhpSpreadsheet\Worksheet\ColumnCellIterator; use PhpOffice\PhpSpreadsheet\Worksheet\ColumnCellIterator;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class ColumnTest extends PHPUnit_Framework_TestCase class ColumnTest extends TestCase
{ {
public $mockWorksheet; public $mockWorksheet;
public $mockColumn; public $mockColumn;

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
use PhpOffice\PhpSpreadsheet\Cell\Cell; use PhpOffice\PhpSpreadsheet\Cell\Cell;
use PhpOffice\PhpSpreadsheet\Worksheet\RowCellIterator; use PhpOffice\PhpSpreadsheet\Worksheet\RowCellIterator;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class RowCellIteratorTest extends PHPUnit_Framework_TestCase class RowCellIteratorTest extends TestCase
{ {
public $mockWorksheet; public $mockWorksheet;
public $mockCell; public $mockCell;

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
use PhpOffice\PhpSpreadsheet\Worksheet\Row; use PhpOffice\PhpSpreadsheet\Worksheet\Row;
use PhpOffice\PhpSpreadsheet\Worksheet\RowIterator; use PhpOffice\PhpSpreadsheet\Worksheet\RowIterator;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class RowIteratorTest extends PHPUnit_Framework_TestCase class RowIteratorTest extends TestCase
{ {
public $mockWorksheet; public $mockWorksheet;
public $mockRow; public $mockRow;

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
use PhpOffice\PhpSpreadsheet\Worksheet\Row; use PhpOffice\PhpSpreadsheet\Worksheet\Row;
use PhpOffice\PhpSpreadsheet\Worksheet\RowCellIterator; use PhpOffice\PhpSpreadsheet\Worksheet\RowCellIterator;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class RowTest extends PHPUnit_Framework_TestCase class RowTest extends TestCase
{ {
public $mockWorksheet; public $mockWorksheet;
public $mockRow; public $mockRow;

View File

@ -4,9 +4,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Worksheet;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class WorksheetTest extends PHPUnit_Framework_TestCase class WorksheetTest extends TestCase
{ {
public function testSetTitle() public function testSetTitle()
{ {

View File

@ -12,9 +12,9 @@ use PhpOffice\PhpSpreadsheet\Style\Font;
use PhpOffice\PhpSpreadsheet\Style\NumberFormat; use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
use PhpOffice\PhpSpreadsheet\Writer\Ods; use PhpOffice\PhpSpreadsheet\Writer\Ods;
use PhpOffice\PhpSpreadsheet\Writer\Ods\Content; use PhpOffice\PhpSpreadsheet\Writer\Ods\Content;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class ContentTest extends PHPUnit_Framework_TestCase class ContentTest extends TestCase
{ {
private $samplesPath = __DIR__ . '/../../../data/Writer/Ods'; private $samplesPath = __DIR__ . '/../../../data/Writer/Ods';

View File

@ -5,9 +5,9 @@ namespace PhpOffice\PhpSpreadsheetTests\Writer\Xls\Workbook;
use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Writer\Xls\Parser; use PhpOffice\PhpSpreadsheet\Writer\Xls\Parser;
use PhpOffice\PhpSpreadsheet\Writer\Xls\Workbook; use PhpOffice\PhpSpreadsheet\Writer\Xls\Workbook;
use PHPUnit_Framework_TestCase; use PHPUnit\Framework\TestCase;
class WorkbookTest extends PHPUnit_Framework_TestCase class WorkbookTest extends TestCase
{ {
/** /**
* @var Workbook * @var Workbook