Skip to content

Instantly share code, notes, and snippets.

@jonayGodoy
Created January 15, 2017 12:23
Show Gist options
  • Save jonayGodoy/073488f37aa841cf4b6d38fcafc91c9c to your computer and use it in GitHub Desktop.
Save jonayGodoy/073488f37aa841cf4b6d38fcafc91c9c to your computer and use it in GitHub Desktop.

Revisions

  1. jonayGodoy created this gist Jan 15, 2017.
    18 changes: 18 additions & 0 deletions HelloWorldShould.java
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,18 @@
    import org.junit.Assert;
    import org.junit.Test;


    public class HelloWorldShould {

    @Test
    public void testGreen() {
    Assert.assertTrue(true);
    }


    @Test
    public void helloIsHello() {
    String hello = "Hello World";
    Assert.assertEquals("Hello World",hello);
    }
    }