1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-13 23:24:50 +02:00

Add INSTANCE shortcut to SmackTestUtil

This commit is contained in:
Florian Schmaus 2019-09-24 23:28:45 +02:00
parent 3ee4dd7b3a
commit cf48f12565

View file

@ -125,10 +125,19 @@ public class SmackTestUtil {
return parser; return parser;
} }
@SuppressWarnings("unchecked")
private static <E extends Element, P extends Provider<E>> P providerClassToProvider(Class<P> providerClass) { private static <E extends Element, P extends Provider<E>> P providerClassToProvider(Class<P> providerClass) {
P provider; P provider;
// TODO: Consider adding a shortcut in case there is a static INSTANCE field holding an instance of the
// requested provider. try {
provider = (P) providerClass.getDeclaredField("INSTANCE").get(null);
return provider;
} catch (NoSuchFieldException e) {
// Continue with the next approach.
} catch (IllegalArgumentException | IllegalAccessException | SecurityException e) {
throw new AssertionError(e);
}
try { try {
provider = providerClass.getDeclaredConstructor().newInstance(); provider = providerClass.getDeclaredConstructor().newInstance();
} }