mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-03 09:13:50 -05:00
30 lines
434 B
Java
30 lines
434 B
Java
package uk.ac.ic.wlgitbridge.application;
|
|
|
|
import org.junit.Test;
|
|
|
|
/**
|
|
* Created by Winston on 02/11/14.
|
|
*/
|
|
public class WLGitBridgeApplicationTest {
|
|
|
|
@Test
|
|
public void diesIfLessThanTwoArguments() {
|
|
|
|
}
|
|
|
|
@Test
|
|
public void diesIfFirstArgumentIsInvalidNumber() {
|
|
|
|
}
|
|
|
|
@Test
|
|
public void setsPortToFirstArgument() {
|
|
|
|
}
|
|
|
|
@Test
|
|
public void setsRootGitDirectoryPathToSecondArgument() {
|
|
|
|
}
|
|
|
|
}
|