Skip to content

Commit 5ffb585

Browse files
committed
Fixing test group for "Temperatures".
1 parent e8845b2 commit 5ffb585

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Added
89
- Tests for "Conway sequence".
910
- Tests for "The gift".
1011
- Tests for "Scrabble".
1112

13+
### Fixed
14+
- Test group for "Temperatures".
15+
1216
## [2.1.0] - 2022-02-10
1317
### Added
1418
- Tests for "Stock exchange losses".

tests/Training/Easy/Temperatures/TemperaturesTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function setUp(): void
2323
/**
2424
* Test that the code can be executed for "Simple test case".
2525
*
26-
* @group unary_simpleTestCase
26+
* @group temperatures_simpleTestCase
2727
*/
2828
public function testCanExecuteSimpleTestCase(): void
2929
{
@@ -36,7 +36,7 @@ public function testCanExecuteSimpleTestCase(): void
3636
/**
3737
* Test that the code can be executed for "Only negative numbers".
3838
*
39-
* @group unary_onlyNegativeNumbers
39+
* @group temperatures_onlyNegativeNumbers
4040
*/
4141
public function testCanExecuteOnlyNegativeNumbers(): void
4242
{
@@ -49,7 +49,7 @@ public function testCanExecuteOnlyNegativeNumbers(): void
4949
/**
5050
* Test that the code can be executed for "Choose the right temperature".
5151
*
52-
* @group unary_chooseTheRightTemperature
52+
* @group temperatures_chooseTheRightTemperature
5353
*/
5454
public function testCanExecuteChooseTheRightTemperature(): void
5555
{
@@ -62,7 +62,7 @@ public function testCanExecuteChooseTheRightTemperature(): void
6262
/**
6363
* Test that the code can be executed for "Choose the right temperature 2".
6464
*
65-
* @group unary_chooseTheRightTemperature2
65+
* @group temperatures_chooseTheRightTemperature2
6666
*/
6767
public function testCanExecuteChooseTheRightTemperature2(): void
6868
{
@@ -75,7 +75,7 @@ public function testCanExecuteChooseTheRightTemperature2(): void
7575
/**
7676
* Test that the code can be executed for "Complex test case".
7777
*
78-
* @group unary_complexTestCase
78+
* @group temperatures_complexTestCase
7979
*/
8080
public function testCanExecuteComplexTestCase(): void
8181
{
@@ -88,7 +88,7 @@ public function testCanExecuteComplexTestCase(): void
8888
/**
8989
* Test that the code can be executed for "No temperature".
9090
*
91-
* @group unary_noTemperature
91+
* @group temperatures_noTemperature
9292
*/
9393
public function testCanExecuteNoTemperature(): void
9494
{

0 commit comments

Comments
 (0)