Skip to content

Instantly share code, notes, and snippets.

View magneticflux-'s full-sized avatar
💾
Ctrl+S

Mitchell Skaggs magneticflux-

💾
Ctrl+S
  • Greater St. Louis Area, Missouri, USA, Earth, Sol system, Orion Arm, Milky Way, Laniakea Supercluster, The Universe
  • 10:05 (UTC -05:00)
View GitHub Profile
@magneticflux-
magneticflux- / MockitoTestRule.java
Created March 21, 2017 13:30
Mockito TestRule replacement example
import org.junit.rules.TestRule;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
import org.mockito.internal.configuration.IndependentAnnotationEngine;
import org.mockito.plugins.AnnotationEngine;
public class MockitoTestRule implements TestRule {
@Override
public Statement apply(Statement base, Description description) {