prepare 4.0.0.Alpha2 release
This commit is contained in:
parent
691712fcbb
commit
484d5e2fbb
|
@ -165,7 +165,17 @@ public class CustomRunner extends BlockJUnit4ClassRunner {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Dialect dialect = Dialect.getDialect();
|
private static Dialect dialect = determineDialect();
|
||||||
|
|
||||||
|
private static Dialect determineDialect() {
|
||||||
|
try {
|
||||||
|
return Dialect.getDialect();
|
||||||
|
}
|
||||||
|
catch( Exception e ) {
|
||||||
|
return new Dialect() {
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected Ignore convertSkipToIgnore(FrameworkMethod frameworkMethod) {
|
protected Ignore convertSkipToIgnore(FrameworkMethod frameworkMethod) {
|
||||||
// @Skip
|
// @Skip
|
||||||
|
|
Loading…
Reference in New Issue