|
6 | 6 | #include "test/catch.hpp"
|
7 | 7 | #endif
|
8 | 8 |
|
9 |
| -TEST_CASE("no_difference_between_identical_strands") |
| 9 | +// UUID: 54681314-eee2-439a-9db0-b0636c656156 |
| 10 | +TEST_CASE("single letter identical strands") |
10 | 11 | {
|
11 | 12 | REQUIRE(0 == hamming::compute("A", "A"));
|
12 | 13 | }
|
13 | 14 |
|
14 | 15 | #if defined(EXERCISM_RUN_ALL_TESTS)
|
15 |
| -TEST_CASE("complete_hamming_distance_for_single_nucleotide_strand") |
| 16 | +// UUID: f6dcb64f-03b0-4b60-81b1-3c9dbf47e887 |
| 17 | +TEST_CASE("empty strands") |
16 | 18 | {
|
17 |
| - REQUIRE(1 == hamming::compute("A", "G")); |
| 19 | + REQUIRE(0 == hamming::compute("", "")); |
18 | 20 | }
|
19 | 21 |
|
20 |
| -TEST_CASE("complete_hamming_distance_for_small_strand") |
| 22 | +// UUID: 294479a3-a4c8-478f-8d63-6209815a827b |
| 23 | +TEST_CASE("single letter different strands") |
21 | 24 | {
|
22 |
| - REQUIRE(2 == hamming::compute("AG", "CT")); |
| 25 | + REQUIRE(1 == hamming::compute("G", "T")); |
23 | 26 | }
|
24 | 27 |
|
25 |
| -TEST_CASE("small_hamming_distance") |
| 28 | +// UUID: 9aed5f34-5693-4344-9b31-40c692fb5592 |
| 29 | +TEST_CASE("long identical strands") |
26 | 30 | {
|
27 |
| - REQUIRE(1 == hamming::compute("AT", "CT")); |
| 31 | + REQUIRE(0 == hamming::compute("GGACTGAAATCTG", "GGACTGAAATCTG")); |
28 | 32 | }
|
29 | 33 |
|
30 |
| -TEST_CASE("small_hamming_distance_in_longer_strand") |
| 34 | +// UUID: cd2273a5-c576-46c8-a52b-dee251c3e6e5 |
| 35 | +TEST_CASE("long different strands") |
31 | 36 | {
|
32 |
| - REQUIRE(1 == hamming::compute("GGACG", "GGTCG")); |
| 37 | + REQUIRE(9 == hamming::compute("GGACGGATTCTG", "AGGACGGATTCT")); |
33 | 38 | }
|
34 | 39 |
|
35 |
| -TEST_CASE("domain_error_when_first_string_is_longer") |
| 40 | +// UUID: b9228bb1-465f-4141-b40f-1f99812de5a8 |
| 41 | +TEST_CASE("disallow first strand longer") |
36 | 42 | {
|
37 |
| - REQUIRE_THROWS_AS(hamming::compute("AAAG", "AAA"), std::domain_error); |
| 43 | + REQUIRE_THROWS_AS(hamming::compute("AATG", "AAA"), std::domain_error); |
38 | 44 | }
|
39 | 45 |
|
40 |
| -TEST_CASE("domain_error_when_second_string_is_longer") |
| 46 | +// UUID: dab38838-26bb-4fff-acbe-3b0a9bfeba2d |
| 47 | +TEST_CASE("disallow second strand longer") |
41 | 48 | {
|
42 |
| - REQUIRE_THROWS_AS(hamming::compute("AAA", "AAAG"), std::domain_error); |
| 49 | + REQUIRE_THROWS_AS(hamming::compute("ATA", "AGTG"), std::domain_error); |
43 | 50 | }
|
44 | 51 |
|
45 |
| -TEST_CASE("large_hamming_distance") |
| 52 | +// UUID: db92e77e-7c72-499d-8fe6-9354d2bfd504 |
| 53 | +TEST_CASE("disallow left empty strand") |
46 | 54 | {
|
47 |
| - REQUIRE(4 == hamming::compute("GATACA", "GCATAA")); |
| 55 | + REQUIRE_THROWS_AS(hamming::compute("", "G"), std::domain_error); |
48 | 56 | }
|
49 | 57 |
|
50 |
| -TEST_CASE("hamming_distance_in_very_long_strand") |
| 58 | +// UUID: b764d47c-83ff-4de2-ab10-6cfe4b15c0f3 |
| 59 | +TEST_CASE("disallow empty first strand") |
51 | 60 | {
|
52 |
| - REQUIRE(9 == hamming::compute("GGACGGATTCTG", "AGGACGGATTCT")); |
| 61 | + REQUIRE_THROWS_AS(hamming::compute("", "G"), std::domain_error); |
| 62 | +} |
| 63 | + |
| 64 | +// UUID: 9ab9262f-3521-4191-81f5-0ed184a5aa89 |
| 65 | +TEST_CASE("disallow empty second strand") |
| 66 | +{ |
| 67 | + REQUIRE_THROWS_AS(hamming::compute("G", ""), std::domain_error); |
53 | 68 | }
|
54 | 69 | #endif
|
0 commit comments