()
| 16 | } |
| 17 | |
| 18 | @Test |
| 19 | public void verifySharpedData() { |
| 20 | for (Note.Tone tone : Note.Tone.values()) { |
| 21 | if (!tone.isSharpable()) return; |
| 22 | |
| 23 | assertFalse(tone.isSharped(tone.getId(false))); |
| 24 | assertTrue(tone.isSharped(tone.getId(true))); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | @Test |
| 29 | public void verifyUnknownToneData() { |
nothing calls this directly
no test coverage detected