()
| 94 | } |
| 95 | |
| 96 | @Test |
| 97 | public void testFlatWrapping() { |
| 98 | Note note = Note.flat(1, Note.Tone.G); |
| 99 | assertTrue(note.isSharped()); |
| 100 | assertThat(note.getTone(), is(Note.Tone.F)); |
| 101 | } |
| 102 | |
| 103 | @Test |
| 104 | public void testFlatWrapping2() { |
nothing calls this directly
no test coverage detected