This class is provided to make it easier to invoke JUnit 5 tests from .Net code.
The problem I've encountered is that the various translated assemblies have their
own classloaders, and without explicit references in code, can't dynamically
retrieve classes available in other assemblies, therefore JUnit 5 can't
discover the available test classes.
The second issue is that I haven't been able to get translated Java code to
enumerate the available classes.
The result is that a .Net "driver" class is used to list the test classes from the
`org.mpxj.junit` assembly, then passes the list of classes to the `run` method
below.