()
| 9 | |
| 10 | public class NoteTest { |
| 11 | @Test |
| 12 | public void getToneByData() { |
| 13 | for (Note.Tone tone : Note.Tone.values()) { |
| 14 | assertThat(Note.Tone.getById(tone.getId()), is(tone)); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | @Test |
| 19 | public void verifySharpedData() { |
nothing calls this directly
no test coverage detected