Skip to content

Instantly share code, notes, and snippets.

@ewolff
Created June 30, 2013 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ewolff/5894753 to your computer and use it in GitHub Desktop.
Save ewolff/5894753 to your computer and use it in GitHub Desktop.
package com.mycompany.myproject.test.integration.java;
import org.junit.Test;
public class ExceptionTest extends org.vertx.testtools.TestVerticle {
@Test(expected=RuntimeException.class)
public void exception() {
throw new RuntimeException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment