Skip to content

Commit

Permalink
Fixes (not my spec) SoftEng-HEIGVD#397
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Baeriswyl committed Mar 9, 2017
1 parent 02caff4 commit 45329da
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@

package ch.heigvd.res.lab00;

import org.junit.Assert;
import org.junit.Test;

/**
*
* @author SILVERCORP
*/

public class CelloTest {
public void aCelloShouldMakeBoumBoum() {
IInstrument cello = new CelloTest();
@Test
public void aCelloShouldMakeBoumBoum() {
IInstrument cello = new Cello();
String sound = cello.play();
Assert.assertEquals("boum boum", sound);
}
Expand Down

0 comments on commit 45329da

Please sign in to comment.