Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2 from microservices-demo/code/initial
Browse files Browse the repository at this point in the history
Added dummy test so coverage reports don't fail.
  • Loading branch information
Phil Winder authored Aug 10, 2016
2 parents c45c558 + a14d07a commit 8006f5d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/test/java/works/weave/socks/UnitShipment.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package works.weave.socks;

import org.junit.Test;

import static org.junit.Assert.assertEquals;

public class UnitShipment {

@Test
public void testPojo() throws Exception {
Shipment shipment = new Shipment("id", "name");
assertEquals("id", shipment.getId());
assertEquals("name", shipment.getName());
}
}

0 comments on commit 8006f5d

Please sign in to comment.