OpenPojo / openpojo

POJO Testing & Identity Management Made Trivial
http://openpojo.com
Apache License 2.0
156 stars 40 forks source link

TestClassMustBeProperlyNamedRule support for junit jupiter #127

Closed icenfrosty closed 5 years ago

icenfrosty commented 5 years ago

From:

package com.openpojo.validation.rule.impl; public class TestClassMustBeProperlyNamedRule implements Rule { public static final String DEFAULT_ANNOTATIONS[] = { "org.testng.annotations.Test", "org.junit.Test" };

To:

public static final String DEFAULT_ANNOTATIONS[] = { "org.testng.annotations.Test", "org.junit.Test", "org.junit.jupiter.api.Test" };
oshoukry commented 5 years ago

Thank you very much, please upgrade to release 0.8.11, change included.