Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static function setUpBeforeClass(): void
/**
* @task_id 1
*/
#[TestDox('cannot fast attack when the knight is awake')]
#[TestDox('Cannot fast attack when the knight is awake')]
public function testCannotFastAttackWhenKnightIsAwake()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -25,7 +25,7 @@ public function testCannotFastAttackWhenKnightIsAwake()
/**
* @task_id 1
*/
#[TestDox('can fast attack when the knight is asleep')]
#[TestDox('Can fast attack when the knight is asleep')]
public function testCanFastAttackWhenKnightIsAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -37,7 +37,7 @@ public function testCanFastAttackWhenKnightIsAsleep()
/**
* @task_id 2
*/
#[TestDox('cannot spy when everyone is asleep')]
#[TestDox('Cannot spy when everyone is asleep')]
public function testCannotSpyWhenEveryoneAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -53,7 +53,7 @@ public function testCannotSpyWhenEveryoneAsleep()
/**
* @task_id 2
*/
#[TestDox('can spy when only the prisoner is awake')]
#[TestDox('Can spy when only the prisoner is awake')]
public function testCanSpyWhenOnlyPrisonerAwake()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -69,7 +69,7 @@ public function testCanSpyWhenOnlyPrisonerAwake()
/**
* @task_id 2
*/
#[TestDox('can spy when only the archer is awake')]
#[TestDox('Can spy when only the archer is awake')]
public function testCanSpyWhenOnlyArcherAwake()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -85,7 +85,7 @@ public function testCanSpyWhenOnlyArcherAwake()
/**
* @task_id 2
*/
#[TestDox('can spy when only the knight is awake')]
#[TestDox('Can spy when only the knight is awake')]
public function testCanSpyWhenOnlyKnightAwake()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -101,7 +101,7 @@ public function testCanSpyWhenOnlyKnightAwake()
/**
* @task_id 2
*/
#[TestDox('can spy when only the knight is asleep')]
#[TestDox('Can spy when only the knight is asleep')]
public function testCanSpyWhenOnlyKnightAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -117,7 +117,7 @@ public function testCanSpyWhenOnlyKnightAsleep()
/**
* @task_id 2
*/
#[TestDox('can spy when only the prisoner is asleep')]
#[TestDox('Can spy when only the prisoner is asleep')]
public function testCanSpyWhenOnlyPrisonerAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -133,7 +133,7 @@ public function testCanSpyWhenOnlyPrisonerAsleep()
/**
* @task_id 2
*/
#[TestDox('can spy when only the archer is asleep')]
#[TestDox('Can spy when only the archer is asleep')]
public function testCanSpyWhenOnlyArcherAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -149,7 +149,7 @@ public function testCanSpyWhenOnlyArcherAsleep()
/**
* @task_id 2
*/
#[TestDox('can spy when everyone is awake')]
#[TestDox('Can spy when everyone is awake')]
public function testCanSpyWhenEveryoneAwake()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -165,7 +165,7 @@ public function testCanSpyWhenEveryoneAwake()
/**
* @task_id 3
*/
#[TestDox('cannot signal the prisoner when everyone is asleep')]
#[TestDox('Cannot signal the prisoner when everyone is asleep')]
public function testCannotSignalWhenAllAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -180,7 +180,7 @@ public function testCannotSignalWhenAllAsleep()
/**
* @task_id 3
*/
#[TestDox('can signal the prisoner when archer is asleep')]
#[TestDox('Can signal the prisoner when archer is asleep')]
public function testCanSignalWhenArcherAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -195,7 +195,7 @@ public function testCanSignalWhenArcherAsleep()
/**
* @task_id 3
*/
#[TestDox('cannot signal the prisoner when prisoner is asleep')]
#[TestDox('Cannot signal the prisoner when prisoner is asleep')]
public function testCannotSignalWhenPrisonerAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -210,7 +210,7 @@ public function testCannotSignalWhenPrisonerAsleep()
/**
* @task_id 3
*/
#[TestDox('cannot signal the prisoner when no one is asleep')]
#[TestDox('Cannot signal the prisoner when no one is asleep')]
public function testCannotSignalWhenNoOneAsleep()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -225,7 +225,7 @@ public function testCannotSignalWhenNoOneAsleep()
/**
* @task_id 4
*/
#[TestDox('can liberate the prisoner when no one is awake but dog present')]
#[TestDox('Can liberate the prisoner when no one is awake but dog present')]
public function testCanLiberateWhenAllAsleepAndDogPresent()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -242,7 +242,7 @@ public function testCanLiberateWhenAllAsleepAndDogPresent()
/**
* @task_id 4
*/
#[TestDox('can liberate the prisoner when prisoner is awake with dog')]
#[TestDox('Can liberate the prisoner when prisoner is awake with dog')]
public function testCanLiberateWhenPrisonerAwakeWithDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -259,7 +259,7 @@ public function testCanLiberateWhenPrisonerAwakeWithDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when archer is awake with dog')]
#[TestDox('Cannot liberate the prisoner when archer is awake with dog')]
public function testCannotLiberateWhenArcherAwakeWithDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -276,7 +276,7 @@ public function testCannotLiberateWhenArcherAwakeWithDog()
/**
* @task_id 4
*/
#[TestDox('can liberate the prisoner when only knight awake with dog')]
#[TestDox('Can liberate the prisoner when only knight awake with dog')]
public function testCanLiberateWhenKnightAwakeWithDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -293,7 +293,7 @@ public function testCanLiberateWhenKnightAwakeWithDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when prisoner asleep with dog')]
#[TestDox('Cannot liberate the prisoner when prisoner asleep with dog')]
public function testCannotLiberateWhenPrisonerAsleepWithDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -310,7 +310,7 @@ public function testCannotLiberateWhenPrisonerAsleepWithDog()
/**
* @task_id 4
*/
#[TestDox('can liberate the prisoner when only archer asleep with dog')]
#[TestDox('Can liberate the prisoner when only archer asleep with dog')]
public function testCanLiberateWhenArcherAsleepWithDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -327,7 +327,7 @@ public function testCanLiberateWhenArcherAsleepWithDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when knight asleep with dog')]
#[TestDox('Cannot liberate the prisoner when knight asleep with dog')]
public function testCannotLiberateWhenKnightAsleepWithDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -344,7 +344,7 @@ public function testCannotLiberateWhenKnightAsleepWithDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when all awake with dog')]
#[TestDox('Cannot liberate the prisoner when all awake with dog')]
public function testCannotLiberateWhenAllAwakeWithDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -361,7 +361,7 @@ public function testCannotLiberateWhenAllAwakeWithDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when no one is awake and no dog present')]
#[TestDox('Cannot liberate the prisoner when no one is awake and no dog present')]
public function testCannotLiberateWhenAllAsleepAndNoDogPresent()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -378,7 +378,7 @@ public function testCannotLiberateWhenAllAsleepAndNoDogPresent()
/**
* @task_id 4
*/
#[TestDox('can liberate the prisoner when prisoner is awake without dog')]
#[TestDox('Can liberate the prisoner when prisoner is awake without dog')]
public function testCanLiberateWhenPrisonerAwakeWithoutDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -395,7 +395,7 @@ public function testCanLiberateWhenPrisonerAwakeWithoutDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when archer is awake without dog')]
#[TestDox('Cannot liberate the prisoner when archer is awake without dog')]
public function testCannotLiberateWhenArcherAwakeWithoutDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -412,7 +412,7 @@ public function testCannotLiberateWhenArcherAwakeWithoutDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when only knight awake without dog')]
#[TestDox('Cannot liberate the prisoner when only knight awake without dog')]
public function testCannotLiberateWhenKnightAwakeWithoutDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -429,7 +429,7 @@ public function testCannotLiberateWhenKnightAwakeWithoutDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when prisoner asleep without dog')]
#[TestDox('Cannot liberate the prisoner when prisoner asleep without dog')]
public function testCannotLiberateWhenPrisonerAsleepWithoutDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -446,7 +446,7 @@ public function testCannotLiberateWhenPrisonerAsleepWithoutDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when only archer asleep without dog')]
#[TestDox('Cannot liberate the prisoner when only archer asleep without dog')]
public function testCannotLiberateWhenArcherAsleepWithoutDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -463,7 +463,7 @@ public function testCannotLiberateWhenArcherAsleepWithoutDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when knight asleep without dog')]
#[TestDox('Cannot liberate the prisoner when knight asleep without dog')]
public function testCannotLiberateWhenKnightAsleepWithoutDog()
{
$infiltration = new AnnalynsInfiltration();
Expand All @@ -480,7 +480,7 @@ public function testCannotLiberateWhenKnightAsleepWithoutDog()
/**
* @task_id 4
*/
#[TestDox('cannot liberate the prisoner when all awake without dog')]
#[TestDox('Cannot liberate the prisoner when all awake without dog')]
public function testCannotLiberateWhenAllAwakeWithoutDog()
{
$infiltration = new AnnalynsInfiltration();
Expand Down
24 changes: 12 additions & 12 deletions exercises/concept/city-office/CityOfficeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CityOfficeTest extends TestCase
/**
* @task_id 1
*/
#[TestDox('specify a string type for Address::$street')]
#[TestDox('Specify a string type for Address::$street')]
public function testTypeOfAddressStreetProperty()
{
$this->assertProperty(
Expand All @@ -31,7 +31,7 @@ class_name: Address::class,
/**
* @task_id 1
*/
#[TestDox('specify a string type for Address::$postal_code')]
#[TestDox('Specify a string type for Address::$postal_code')]
public function testTypeOfAddressPostalCodeProperty()
{
$this->assertProperty(
Expand All @@ -48,7 +48,7 @@ class_name: Address::class,
/**
* @task_id 1
*/
#[TestDox('specify a string type for Address::$city')]
#[TestDox('Specify a string type for Address::$city')]
public function testTypeOfAddressCityProperty()
{
$this->assertProperty(
Expand All @@ -65,7 +65,7 @@ class_name: Address::class,
/**
* @task_id 2
*/
#[TestDox('specify an int type for Form::blanks length parameter')]
#[TestDox('Specify an int type for Form::blanks length parameter')]
public function testParameterTypeOfFormBlanksLengthParameter()
{
$this->assertMethodParameter(
Expand All @@ -85,7 +85,7 @@ class_name: Form::class,
/**
* @task_id 2
*/
#[TestDox('specify an int type for Form::blanks return type')]
#[TestDox('Specify an int type for Form::blanks return type')]
public function testParameterTypeOfFormBlanksReturnType()
{
$this->assertMethodReturnType(
Expand All @@ -102,7 +102,7 @@ class_name: Form::class,
/**
* @task_id 3
*/
#[TestDox('specify an int type for Form::letters word parameter')]
#[TestDox('Specify an int type for Form::letters word parameter')]
public function testParameterTypeOfFormLettersWordParameter()
{
$this->assertMethodParameter(
Expand All @@ -122,7 +122,7 @@ class_name: Form::class,
/**
* @task_id 3
*/
#[TestDox('specify an int type for Form::letters return type')]
#[TestDox('Specify an int type for Form::letters return type')]
public function testParameterTypeOfFormLettersReturnType()
{
$this->assertMethodReturnType(
Expand All @@ -139,7 +139,7 @@ class_name: Form::class,
/**
* @task_id 4
*/
#[TestDox('specify an int type for Form::checkLength word parameter')]
#[TestDox('Specify an int type for Form::checkLength word parameter')]
public function testParameterTypeOfFormCheckLengthWordParameter()
{
$this->assertMethodParameter(
Expand All @@ -159,7 +159,7 @@ class_name: Form::class,
/**
* @task_id 4
*/
#[TestDox('specify an int type for Form::checkLength max_length parameter')]
#[TestDox('Specify an int type for Form::checkLength max_length parameter')]
public function testParameterTypeOfFormCheckLengthMaxLengthParameter()
{
$this->assertMethodParameter(
Expand All @@ -179,7 +179,7 @@ class_name: Form::class,
/**
* @task_id 4
*/
#[TestDox('specify an int type for Form::checkLength return type')]
#[TestDox('Specify an int type for Form::checkLength return type')]
public function testParameterTypeOfFormCheckLengthReturnType()
{
$this->assertMethodReturnType(
Expand All @@ -196,7 +196,7 @@ class_name: Form::class,
/**
* @task_id 5
*/
#[TestDox('specify an Address type for Form::formatAddress address parameter')]
#[TestDox('Specify an Address type for Form::formatAddress address parameter')]
public function testParameterTypeOfFormFormatAddressParameter()
{
$this->assertMethodParameter(
Expand All @@ -216,7 +216,7 @@ class_name: Form::class,
/**
* @task_id 5
*/
#[TestDox('specify an int type for Form::checkLength return type')]
#[TestDox('Specify an int type for Form::checkLength return type')]
public function testParameterTypeOfFormFormatAddressReturnType()
{
$this->assertMethodReturnType(
Expand Down
Loading
Loading