Ejemplo n.º 1
0
 public void getFirstStringTwelfthFret()
 {
     Assert.AreEqual("E", Chord.GetNoteLetter(0, 12));
 }
Ejemplo n.º 2
0
 public void getSixthStringFirstFret()
 {
     Assert.AreEqual("E", Chord.GetNoteLetter(5, 0));
 }
Ejemplo n.º 3
0
 public void getSecondStringFirstFret()
 {
     Assert.AreEqual("A", Chord.GetNoteLetter(1, 0));
 }
Ejemplo n.º 4
0
 public void getSecondStringTwelfthFret()
 {
     Assert.AreEqual("A", Chord.GetNoteLetter(1, 12));
 }
Ejemplo n.º 5
0
 public void getThirdStringFirstFret()
 {
     Assert.AreEqual("D", Chord.GetNoteLetter(2, 0));
 }
Ejemplo n.º 6
0
 public void getThirdStringTwelfthFret()
 {
     Assert.AreEqual("D", Chord.GetNoteLetter(2, 12));
 }
Ejemplo n.º 7
0
 public void getFourthStringTwelfthFret()
 {
     Assert.AreEqual("G", Chord.GetNoteLetter(3, 12));
 }
Ejemplo n.º 8
0
 public void getFourthStringFirstFret()
 {
     Assert.AreEqual("G", Chord.GetNoteLetter(3, 0));
 }
Ejemplo n.º 9
0
 public void getFifthStringTwelfthFret()
 {
     Assert.AreEqual("B", Chord.GetNoteLetter(4, 12));
 }
Ejemplo n.º 10
0
 public void getFifthStringFirstFret()
 {
     Assert.AreEqual("B", Chord.GetNoteLetter(4, 0));
 }
Ejemplo n.º 11
0
 public void getSixthStringTwelfthFret()
 {
     Assert.AreEqual("E", Chord.GetNoteLetter(5, 12));
 }