CoreComponents icon indicating copy to clipboard operation
CoreComponents copied to clipboard

Nitor Creations Core Components

Results 9 CoreComponents issues
Sort by recently updated
recently updated
newest added

This debug code: ```java // WrappingParameterizedRunner.java L313 /* ** DEBUG export class to /tmp/x.class ** */ try { FileOutputStream fos = new FileOutputStream("/tmp/x.class"); fos.write(clazzBytes); fos.close(); } catch (Exception e1) {...

bug

We wanted to be able to directly run a nested test from the IDE instead of having to run the entire parent. In order to accomplish that, we modified the...

When running a nested test method in Intellj with Ctrl+Shift+R (a focused test), this is the failure. However, the tests run and pass when running the entire file. ``` @RunWith(NestedRunner.class)...

I'm trying to use the Spring Junit Rules (SpringClassRule and SpringMethodRule) with the NestedRunner, but I'm getting a NullPointerException at the start of the tests. Here is a minimal example...

I would like to annotate a whole inner class with `@Ignore` and dismiss all test cases from there ``` java @RunWith(NestedRunner.class) public class Tester { @Test public void test() {...

I am planning to use 1. [Spring MVC](https://github.com/spring-projects/spring-framework/commit/d1b1c4f888b5ab5c60cf4beb87f577143bdbebe7) - For Integration testing 2. [NestedRunner](https://github.com/NitorCreations/CoreComponents/tree/master/junit-runners) - For nesting test cases 3. [JUnitParams](https://github.com/Pragmatists/JUnitParams) - For [DDT](http://www.wikiwand.com/en/Data-driven_testing) 4. [Assumes](https://github.com/junit-team/junit.contrib/tree/master/assumes) - for specifying test...

enhancement

Welcome to [Renovate](https://redirect.github.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request. To disable...