Skip to content

Instantly share code, notes, and snippets.

@thegabriele97
Created April 27, 2018 11:36
Show Gist options
  • Save thegabriele97/558bce9ae5e4aff5964e5be009785b64 to your computer and use it in GitHub Desktop.
Save thegabriele97/558bce9ae5e4aff5964e5be009785b64 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="output" path="bin"/>
</classpath>
import static org.junit.Assert.assertTrue;
import org.junit.*;
public class TestOne {
@Test
public void test1() {
assertTrue(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment