()
| 101 | } |
| 102 | |
| 103 | @Test |
| 104 | public void testFlatWrapping2() { |
| 105 | Note note = new Note(1, Note.Tone.G, false).flattened(); |
| 106 | assertTrue(note.isSharped()); |
| 107 | assertThat(note.getTone(), is(Note.Tone.F)); |
| 108 | } |
| 109 | |
| 110 | @Test |
| 111 | public void testSharpWrapping() { |
nothing calls this directly
no test coverage detected