1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-04-21 16:01:56 +02:00

Merge pull request #1820 from localheinz/fix/final

Fix: Mark test classes as final
This commit is contained in:
Francois Zaninotto 2019-11-27 15:47:58 +01:00 committed by GitHub
commit ce73e7341c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
130 changed files with 136 additions and 136 deletions

View File

@ -7,7 +7,7 @@ namespace Faker\Test\Calculator;
use Faker\Calculator\Ean;
use PHPUnit\Framework\TestCase;
class EanTest extends TestCase
final class EanTest extends TestCase
{
public function Ean8checksumProvider()
{

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Calculator;
use Faker\Calculator\Iban;
use PHPUnit\Framework\TestCase;
class IbanTest extends TestCase
final class IbanTest extends TestCase
{
public function checksumProvider()

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Calculator;
use Faker\Calculator\Inn;
use PHPUnit\Framework\TestCase;
class InnTest extends TestCase
final class InnTest extends TestCase
{
public function checksumProvider()

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Calculator;
use Faker\Calculator\Luhn;
use PHPUnit\Framework\TestCase;
class LuhnTest extends TestCase
final class LuhnTest extends TestCase
{
public function checkDigitProvider()

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Calculator;
use Faker\Calculator\TCNo;
use PHPUnit\Framework\TestCase;
class TCNoTest extends TestCase
final class TCNoTest extends TestCase
{
public function checksumProvider()
{

View File

@ -5,7 +5,7 @@ namespace Faker\Test;
use Faker\DefaultGenerator;
use PHPUnit\Framework\TestCase;
class DefaultGeneratorTest extends TestCase
final class DefaultGeneratorTest extends TestCase
{
public function testGeneratorReturnsNullByDefault()
{

View File

@ -5,7 +5,7 @@ namespace Faker\Test;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class GeneratorTest extends TestCase
final class GeneratorTest extends TestCase
{
public function testAddProviderGivesPriorityToNewlyAddedProvider()
{
@ -126,7 +126,7 @@ class GeneratorTest extends TestCase
}
}
class FooProvider
final class FooProvider
{
public function fooFormatter()
{
@ -139,7 +139,7 @@ class FooProvider
}
}
class BarProvider
final class BarProvider
{
public function fooFormatter()
{

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\Barcode;
use PHPUnit\Framework\TestCase;
class BarcodeTest extends TestCase
final class BarcodeTest extends TestCase
{
private $faker;
@ -37,7 +37,7 @@ class BarcodeTest extends TestCase
}
}
class TestableBarcode extends Barcode
final class TestableBarcode extends Barcode
{
public static function eanChecksum($input)
{

View File

@ -6,7 +6,7 @@ use Faker\Provider\Base as BaseProvider;
use PHPUnit\Framework\TestCase;
use Traversable;
class BaseTest extends TestCase
final class BaseTest extends TestCase
{
public function testRandomDigitReturnsInteger()
{
@ -567,6 +567,6 @@ class BaseTest extends TestCase
}
}
class Collection extends \ArrayObject
final class Collection extends \ArrayObject
{
}

View File

@ -5,7 +5,7 @@ use Faker\Provider\Biased;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class BiasedTest extends TestCase
final class BiasedTest extends TestCase
{
const MAX = 10;
const NUMBERS = 25000;

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Provider;
use Faker\Provider\Color;
use PHPUnit\Framework\TestCase;
class ColorTest extends TestCase
final class ColorTest extends TestCase
{
public function testHexColor()

View File

@ -7,7 +7,7 @@ use Faker\Provider\Company;
use Faker\Provider\Lorem;
use PHPUnit\Framework\TestCase;
class CompanyTest extends TestCase
final class CompanyTest extends TestCase
{
/**
* @var Generator

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Provider;
use Faker\Provider\DateTime as DateTimeProvider;
use PHPUnit\Framework\TestCase;
class DateTimeTest extends TestCase
final class DateTimeTest extends TestCase
{
public function setUp()
{

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\HtmlLorem;
use PHPUnit\Framework\TestCase;
class HtmlLoremTest extends TestCase
final class HtmlLoremTest extends TestCase
{
public function testProvider()

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Provider;
use Faker\Provider\Image;
use PHPUnit\Framework\TestCase;
class ImageTest extends TestCase
final class ImageTest extends TestCase
{
public function testImageUrlUses640x680AsTheDefaultSize()
{

View File

@ -9,7 +9,7 @@ use Faker\Provider\Lorem;
use Faker\Provider\Person;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**
* @var Generator

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Provider;
use Faker\Factory;
use PHPUnit\Framework\TestCase;
class LocalizationTest extends TestCase
final class LocalizationTest extends TestCase
{
public function testLocalizedNameProvidersDoNotThrowErrors()
{

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Provider;
use Faker\Provider\Lorem;
use PHPUnit\Framework\TestCase;
class LoremTest extends TestCase
final class LoremTest extends TestCase
{
/**
* @expectedException \InvalidArgumentException
@ -89,7 +89,7 @@ class LoremTest extends TestCase
}
}
class TestableLorem extends Lorem
final class TestableLorem extends Lorem
{
public static function word()

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Provider;
use Faker\Provider\Miscellaneous;
use PHPUnit\Framework\TestCase;
class MiscellaneousTest extends TestCase
final class MiscellaneousTest extends TestCase
{
public function testBoolean()
{

View File

@ -11,7 +11,7 @@ use Faker\Provider\Payment as PaymentProvider;
use Faker\Provider\Person as PersonProvider;
use PHPUnit\Framework\TestCase;
class PaymentTest extends TestCase
final class PaymentTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Provider\Person;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/**
* @dataProvider firstNameProvider

View File

@ -7,7 +7,7 @@ use Faker\Calculator\Luhn;
use Faker\Provider\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**

View File

@ -17,7 +17,7 @@ use PHPUnit\Framework\TestCase;
* locale specific provider (can) has specific implementations. The goal of this test is to test the common denominator
* and to try to catch possible invalid multi-byte sequences.
*/
class ProviderOverrideTest extends TestCase
final class ProviderOverrideTest extends TestCase
{
/**
* Constants with regular expression patterns for testing the output.

View File

@ -5,7 +5,7 @@ use Faker\Provider\en_US\Text;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class TextTest extends TestCase
final class TextTest extends TestCase
{
/**
* @var Generator

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Provider;
use Faker\Provider\UserAgent;
use PHPUnit\Framework\TestCase;
class UserAgentTest extends TestCase
final class UserAgentTest extends TestCase
{
public function testRandomUserAgent()
{

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\Uuid as BaseProvider;
use PHPUnit\Framework\TestCase;
class UuidTest extends TestCase
final class UuidTest extends TestCase
{
public function testUuidReturnsUuid()
{

View File

@ -8,7 +8,7 @@ use Faker\Provider\fi_FI\Internet;
use Faker\Provider\fi_FI\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -8,7 +8,7 @@ use Faker\Provider\ar_SA\Internet;
use Faker\Provider\ar_SA\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\at_AT\Payment;
use PHPUnit\Framework\TestCase;
class PaymentTest extends TestCase
final class PaymentTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\bg_BG\Payment;
use PHPUnit\Framework\TestCase;
class PaymentTest extends TestCase
final class PaymentTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\bn_BD\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
public function setUp()
{

View File

@ -7,7 +7,7 @@ use Faker\Provider\cs_CZ\Person;
use Faker\Provider\Miscellaneous;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
public function testBirthNumber()
{

View File

@ -8,7 +8,7 @@ use Faker\Provider\da_DK\Internet;
use Faker\Provider\da_DK\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Generator;
use Faker\Provider\de_AT\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**
* @var Generator

View File

@ -8,7 +8,7 @@ use Faker\Provider\de_AT\Internet;
use Faker\Provider\de_AT\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\de_AT\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Provider\de_CH\Address;
use Faker\Provider\de_CH\Person;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -8,7 +8,7 @@ use Faker\Provider\de_CH\Internet;
use Faker\Provider\de_CH\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Generator;
use Faker\Provider\de_CH\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\de_CH\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**

View File

@ -8,7 +8,7 @@ use Faker\Provider\de_DE\Internet;
use Faker\Provider\de_DE\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -4,7 +4,7 @@ namespace Faker\Test\Provider\el_GR;
use PHPUnit\Framework\TestCase;
class TextTest extends TestCase
final class TextTest extends TestCase
{
private $textClass;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_AU\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_CA\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -5,7 +5,7 @@ namespace Faker\Provider\en_GB;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_IN\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_NG\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Provider\en_NG\Person;
use Faker\Provider\en_NG\Internet;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_NG\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/**
* @var Generator

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_NG\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_NZ\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_PH\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Factory;
use Faker\Provider\en_SG\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
public function setUp()
{

View File

@ -6,7 +6,7 @@ use Faker\Factory;
use Faker\Provider\en_SG\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_UG\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Provider\en_US\Company;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class CompanyTest extends TestCase
final class CompanyTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ namespace Faker\Provider\en_US;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class PaymentTest extends TestCase
final class PaymentTest extends TestCase
{
/**
* @var Generator

View File

@ -6,7 +6,7 @@ use Faker\Provider\en_US\Person;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_US\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_ZA\Company;
use PHPUnit\Framework\TestCase;
class CompanyTest extends TestCase
final class CompanyTest extends TestCase
{
private $faker;

View File

@ -8,7 +8,7 @@ use Faker\Provider\en_ZA\Internet;
use Faker\Provider\en_ZA\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Provider\en_ZA\Person;
use Faker\Provider\DateTime;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\en_ZA\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\es_ES\Payment;
use PHPUnit\Framework\TestCase;
class PaymentTest extends TestCase
final class PaymentTest extends TestCase
{
/**
* @var Generator

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\es_ES\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
public function setUp()
{

View File

@ -5,7 +5,7 @@ namespace Faker\Test\Provider\es_ES;
use Faker\Generator;
use Faker\Provider\es_ES\PhoneNumber;
class PhoneNumberTest extends \PHPUnit_Framework_TestCase
final class PhoneNumberTest extends \PHPUnit_Framework_TestCase
{
public function setUp()
{

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\es_ES\Text;
use PHPUnit\Framework\TestCase;
class TextTest extends TestCase
final class TextTest extends TestCase
{
/**
* @var Generator

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\es_PE\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/**
* @var Generator

View File

@ -11,7 +11,7 @@ use Faker\Generator;
use Faker\Provider\es_VE\Company;
use PHPUnit\Framework\TestCase;
class CompanyTest extends TestCase
final class CompanyTest extends TestCase
{
/**
* @var Generator

View File

@ -11,7 +11,7 @@ use Faker\Generator;
use Faker\Provider\es_VE\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Provider\fa_IR\Person;
use Faker\Generator;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/**

View File

@ -8,7 +8,7 @@ use Faker\Provider\fi_FI\Internet;
use Faker\Provider\fi_FI\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Provider\DateTime;
use Faker\Provider\fi_FI\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/** @var Generator */
protected $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\fr_BE\Payment;
use PHPUnit\Framework\TestCase;
class PaymentTest extends TestCase
final class PaymentTest extends TestCase
{
/**
* @var Generator

View File

@ -7,7 +7,7 @@ use Faker\Provider\fr_CH\Address;
use Faker\Provider\fr_CH\Person;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -8,7 +8,7 @@ use Faker\Provider\fr_CH\Internet;
use Faker\Provider\fr_CH\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Generator;
use Faker\Provider\fr_CH\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\fr_CH\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\fr_FR\Address;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Generator;
use Faker\Provider\fr_FR\Company;
use PHPUnit\Framework\TestCase;
class CompanyTest extends TestCase
final class CompanyTest extends TestCase
{
private $faker;
@ -66,7 +66,7 @@ class CompanyTest extends TestCase
}
}
class TestableCompany extends Company
final class TestableCompany extends Company
{
public static function isCatchPhraseValid($catchPhrase)
{

View File

@ -7,7 +7,7 @@ use Faker\Generator;
use Faker\Provider\fr_FR\Payment;
use PHPUnit\Framework\TestCase;
class PaymentTest extends TestCase
final class PaymentTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\fr_FR\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\fr_FR\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**
* @var Generator

View File

@ -4,7 +4,7 @@ namespace Faker\Test\Provider\fr_FR;
use PHPUnit\Framework\TestCase;
class TextTest extends TestCase
final class TextTest extends TestCase
{
private $textClass;

View File

@ -7,7 +7,7 @@ use Faker\Provider\DateTime;
use Faker\Provider\id_ID\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/**
* @see Person::$birthPlaceCode

View File

@ -7,7 +7,7 @@ use Faker\Provider\it_CH\Address;
use Faker\Provider\it_CH\Person;
use PHPUnit\Framework\TestCase;
class AddressTest extends TestCase
final class AddressTest extends TestCase
{
/**

View File

@ -8,7 +8,7 @@ use Faker\Provider\it_CH\Internet;
use Faker\Provider\it_CH\Company;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
/**

View File

@ -7,7 +7,7 @@ use Faker\Generator;
use Faker\Provider\it_CH\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
private $faker;

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\it_CH\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\it_IT\Company;
use PHPUnit\Framework\TestCase;
class CompanyTest extends TestCase
final class CompanyTest extends TestCase
{
public function setUp()
{

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\it_IT\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
public function setUp()
{

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\ja_JP\Internet;
use PHPUnit\Framework\TestCase;
class InternetTest extends TestCase
final class InternetTest extends TestCase
{
public function testUserName()
{

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\ja_JP\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
public function testKanaNameMaleReturns()
{

View File

@ -6,7 +6,7 @@ use Faker\Generator;
use Faker\Provider\ja_JP\PhoneNumber;
use PHPUnit\Framework\TestCase;
class PhoneNumberTest extends TestCase
final class PhoneNumberTest extends TestCase
{
public function testPhoneNumber()
{

View File

@ -4,7 +4,7 @@ namespace Faker\Test\Provider\ka_GE;
use PHPUnit\Framework\TestCase;
class TextTest extends TestCase
final class TextTest extends TestCase
{
private $textClass;

View File

@ -5,7 +5,7 @@ use Faker\Generator;
use Faker\Provider\kk_KZ\Company;
use PHPUnit\Framework\TestCase;
class CompanyTest extends TestCase
final class CompanyTest extends TestCase
{
/**

View File

@ -6,7 +6,7 @@ use Faker\Provider\DateTime;
use Faker\Provider\kk_KZ\Person;
use PHPUnit\Framework\TestCase;
class PersonTest extends TestCase
final class PersonTest extends TestCase
{
/**

View File

@ -4,7 +4,7 @@ namespace Faker\Test\Provider\kk_KZ;
use PHPUnit\Framework\TestCase;
class TextTest extends TestCase
final class TextTest extends TestCase
{
private $textClass;

View File

@ -4,7 +4,7 @@ namespace Faker\Test\Provider\ko_KR;
use PHPUnit\Framework\TestCase;
class TextTest extends TestCase
final class TextTest extends TestCase
{
private $textClass;

Some files were not shown because too many files have changed in this diff Show More