Skip to content

Commit

Permalink
release 1.6.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mjureczko committed Jul 25, 2024
1 parent 92951b8 commit 13b824f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.ocadotechnology.gembus</groupId>
<artifactId>test-arranger</artifactId>
<version>1.6.2</version>
<version>1.6.2.1</version>
<packaging>jar</packaging>
<name>test-arranger</name>
<description>A tool for arranging test data with pseudo-random values.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package com.ocadotechnology.gembus.test;

import com.ocadotechnology.gembus.test.experimental.SealedInterfaceArranger;
import org.jeasy.random.EasyRandom;
import org.jeasy.random.EasyRandomParameters;
import org.jeasy.random.api.Randomizer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package com.ocadotechnology.gembus.test;

import com.ocadotechnology.gembus.test.experimental.SealedInterfaceArranger;
import io.github.classgraph.ClassGraph;

import java.lang.reflect.Constructor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.ocadotechnology.gembus.test;
package com.ocadotechnology.gembus.test.experimental;

import com.ocadotechnology.gembus.test.CustomArranger;

public class SealedInterfaceArranger<T> extends CustomArranger<T> {

public SealedInterfaceArranger() {
}

protected SealedInterfaceArranger(Class<T> clazz) {
public SealedInterfaceArranger(Class<T> clazz) {
super(clazz);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/
package com.ocadotechnology.gembus.test;

import com.ocadotechnology.gembus.test.experimental.SealedInterfaceArranger;
import org.jeasy.random.ObjectCreationException;
import org.junit.jupiter.api.Test;

Expand Down

0 comments on commit 13b824f

Please sign in to comment.