Skip to content

Instantly share code, notes, and snippets.

@barnash
Created July 31, 2010 08:39
Show Gist options
  • Save barnash/501946 to your computer and use it in GitHub Desktop.
Save barnash/501946 to your computer and use it in GitHub Desktop.
package com.myproject;
import org.junit.Test;
public class FooTest {
@Test
public void test1() throws Exception {
Foo f = new Foo();
assert f.bar(1) == 2;
Thread.sleep(60000); // Just to simulate long tests
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment