()
| 108 | } |
| 109 | |
| 110 | @Test |
| 111 | public void testSharpWrapping() { |
| 112 | Note note = new Note(1, Note.Tone.F, false).sharped(); |
| 113 | assertTrue(note.isSharped()); |
| 114 | assertThat(note.getTone(), is(Note.Tone.F)); |
| 115 | assertEquals(note.getOctave(), 2); |
| 116 | } |
| 117 | |
| 118 | @Test |
| 119 | public void testSharpWrapping2() { |