@@ -23,7 +23,7 @@ CLASS ltcl_nucleotide_count IMPLEMENTATION.
2323 METHOD test_empty_strand .
2424 cl_abap_unit_assert=>assert_equals(
2525 act = cut->nucleotide_counts( '' )
26- exp = VALUE zcl_nucleotide_count=>nucleotide_counts (
26+ exp = VALUE zcl_nucleotide_count=>ty_nucleotide_counts (
2727 ( nucleotide = 'A' count = 0 )
2828 ( nucleotide = 'C' count = 0 )
2929 ( nucleotide = 'G' count = 0 )
@@ -33,7 +33,7 @@ CLASS ltcl_nucleotide_count IMPLEMENTATION.
3333 METHOD test_single_character .
3434 cl_abap_unit_assert=>assert_equals(
3535 act = cut->nucleotide_counts( 'G' )
36- exp = VALUE zcl_nucleotide_count=>nucleotide_counts (
36+ exp = VALUE zcl_nucleotide_count=>ty_nucleotide_counts (
3737 ( nucleotide = 'A' count = 0 )
3838 ( nucleotide = 'C' count = 0 )
3939 ( nucleotide = 'G' count = 1 )
@@ -43,7 +43,7 @@ CLASS ltcl_nucleotide_count IMPLEMENTATION.
4343 METHOD test_repeated_nucleotide .
4444 cl_abap_unit_assert=>assert_equals(
4545 act = cut->nucleotide_counts( 'GGGGGGG' )
46- exp = VALUE zcl_nucleotide_count=>nucleotide_counts (
46+ exp = VALUE zcl_nucleotide_count=>ty_nucleotide_counts (
4747 ( nucleotide = 'A' count = 0 )
4848 ( nucleotide = 'C' count = 0 )
4949 ( nucleotide = 'G' count = 7 )
@@ -53,7 +53,7 @@ CLASS ltcl_nucleotide_count IMPLEMENTATION.
5353 METHOD test_multiple_nucleotides .
5454 cl_abap_unit_assert=>assert_equals(
5555 act = cut->nucleotide_counts( 'AGCTTTTCATTCTGACTGCAACGGGCAATATGTCTCTGTGTGGATTAAAAAAAGAGTGTCTGATAGCAGC' )
56- exp = VALUE zcl_nucleotide_count=>nucleotide_counts (
56+ exp = VALUE zcl_nucleotide_count=>ty_nucleotide_counts (
5757 ( nucleotide = 'A' count = 20 )
5858 ( nucleotide = 'C' count = 12 )
5959 ( nucleotide = 'G' count = 17 )
0 commit comments