Skip to content

Commit fd093ac

Browse files
committed
Fixing test group for "Genome sequencing".
1 parent aa591ac commit fd093ac

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
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

7+
## [2.7.1] - 2022-02-14
8+
### Fixed
9+
- Test group for "Genome sequencing".
10+
711
## [2.7.0] - 2022-02-14
812
### Added
913
- Tests for "Music scores".

tests/Training/Hard/GenomeSequencing/GenomeSequencingTest.php

+7-7
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 "AACCTT".
2525
*
26-
* @group surface_AACCTT
26+
* @group genomeSequencing_AACCTT
2727
*/
2828
public function testCanExecuteAACCTT(): void
2929
{
@@ -36,7 +36,7 @@ public function testCanExecuteAACCTT(): void
3636
/**
3737
* Test that the code can be executed for "AGATTACAGA".
3838
*
39-
* @group surface_AGATTACAGA
39+
* @group genomeSequencing_AGATTACAGA
4040
*/
4141
public function testCanExecuteAGATTACAGA(): void
4242
{
@@ -49,7 +49,7 @@ public function testCanExecuteAGATTACAGA(): void
4949
/**
5050
* Test that the code can be executed for "AACTT".
5151
*
52-
* @group surface_AACTT
52+
* @group genomeSequencing_AACTT
5353
*/
5454
public function testCanExecuteAACTT(): void
5555
{
@@ -62,7 +62,7 @@ public function testCanExecuteAACTT(): void
6262
/**
6363
* Test that the code can be executed for "AGATTA".
6464
*
65-
* @group surface_AGATTA
65+
* @group genomeSequencing_AGATTA
6666
*/
6767
public function testCanExecuteAGATTA(): void
6868
{
@@ -75,7 +75,7 @@ public function testCanExecuteAGATTA(): void
7575
/**
7676
* Test that the code can be executed for "Reversed AGATTA".
7777
*
78-
* @group surface_reversedAGATTA
78+
* @group genomeSequencing_reversedAGATTA
7979
*/
8080
public function testCanExecuteReversedAGATTA(): void
8181
{
@@ -88,7 +88,7 @@ public function testCanExecuteReversedAGATTA(): void
8888
/**
8989
* Test that the code can be executed for "ATCG".
9090
*
91-
* @group surface_ATCG
91+
* @group genomeSequencing_ATCG
9292
*/
9393
public function testCanExecuteReversedATCG(): void
9494
{
@@ -101,7 +101,7 @@ public function testCanExecuteReversedATCG(): void
101101
/**
102102
* Test that the code can be executed for "CCCTGACATGA".
103103
*
104-
* @group surface_CCCTGACATGA
104+
* @group genomeSequencing_CCCTGACATGA
105105
*/
106106
public function testCanExecuteCCCTGACATGA(): void
107107
{

0 commit comments

Comments
 (0)