This commit is contained in:
Johnny Lim
2015-11-14 09:04:52 +09:00
committed by Phillip Webb
parent 6a05927e4f
commit 1e4f8fdd8e
8 changed files with 21 additions and 21 deletions

View File

@@ -63,13 +63,13 @@ public class LiveReloadServerTests {
private MonitoredLiveReloadServer server;
@Before
public void setup() throws Exception {
public void setUp() throws Exception {
this.server = new MonitoredLiveReloadServer(this.port);
this.server.start();
}
@After
public void teardown() throws Exception {
public void tearDown() throws Exception {
this.server.stop();
}