mirror of
https://github.com/opdavies/build-configs.git
synced 2025-09-05 19:05:33 +01:00
test: update names
This commit is contained in:
parent
61d2ca0d76
commit
df550dc051
1 changed files with 2 additions and 4 deletions
|
@ -29,9 +29,8 @@ class ConfigurationValidatorTest extends KernelTestCase
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider projectNameProvider
|
* @dataProvider projectNameProvider
|
||||||
* @test
|
|
||||||
*/
|
*/
|
||||||
public function project_name_should_be_a_string(string|int|bool|null $projectName, int $expectedViolationCount): void
|
public function testTheProjectNameShouldBeAString(mixed $projectName, int $expectedViolationCount): void
|
||||||
{
|
{
|
||||||
$configurationData = [
|
$configurationData = [
|
||||||
'language' => 'php',
|
'language' => 'php',
|
||||||
|
@ -51,9 +50,8 @@ class ConfigurationValidatorTest extends KernelTestCase
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider projectLanguageProvider
|
* @dataProvider projectLanguageProvider
|
||||||
* @test
|
|
||||||
*/
|
*/
|
||||||
public function the_project_language_should_be_a_supported_language(string|int|bool|null $language, int $expectedViolationCount): void
|
public function testTheProjectLanguageShouldBeASupportedLanguage(mixed $language, int $expectedViolationCount): void
|
||||||
{
|
{
|
||||||
$configurationData = [
|
$configurationData = [
|
||||||
'language' => $language,
|
'language' => $language,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue