-
```
What steps will reproduce the problem?
1. Create a groovy test (extending GroovyTestCase)
2. Set the class up to use the @RunWith(PowerMockRunner.class)
@PrepareForTest([MyTest.class]) annotations…
-
```
What steps will reproduce the problem?
1. Create a groovy test (extending GroovyTestCase)
2. Set the class up to use the @RunWith(PowerMockRunner.class)
@PrepareForTest([MyTest.class]) annotations…
-
```
What steps will reproduce the problem?
1. Attempt to validate the following HTTPQueryString:
connectid=68470072-44c2-417b-822b-d945dc0364f4&request=GetFeature&service=wfs&ve
rsion=1.1.0&typeNam…
-
If the execution of @BeforeClass and @AfterClass code was marked in the `executionEvents` array, we'd be able to insert the right markers in the console output report. Currently, there's no reliable w…
-
```
What steps will reproduce the problem?
1. Create a groovy test (extending GroovyTestCase)
2. Set the class up to use the @RunWith(PowerMockRunner.class)
@PrepareForTest([MyTest.class]) annotations…
-
```
What steps will reproduce the problem?
1. Create a test with SpringJUnit4ClassRunner and a PowerMockRule
2. add some expectations in @Before method
3. run test
example :
@RunWith(SpringJUnit4Cla…
-
```
What steps will reproduce the problem?
1. Create a test with SpringJUnit4ClassRunner and a PowerMockRule
2. add some expectations in @Before method
3. run test
example :
@RunWith(SpringJUnit4Cla…
-
```
What steps will reproduce the problem?
1. I'm trying to use a PowerMockRule.
For this I replaced the @RunWith(PowerMockRunner.class) with
@Rule
public PowerMockRule rule = new PowerMockRule();
…
-
A common use case for Jimfs is in small junit tests: create a Jimfs file system with a few files, set their content, and call the method to be tested (making it somehow use the Jimfs file system to mo…
-
I've written a new `MongoComparisonStrategy` based on the [JSONassert](https://github.com/skyscreamer/JSONassert) project and really find it helps me debug my failing tests a lot quicker.
# Background…