Using javax.tools.JavaCompiler and javax.tools.ToolProvider, I'm wrapping a user-input string (which should be a method) with a predefined class all within a large string and executing it within my code. Is there a way to (in the same code) instantiate the class that was compiled (as it doesn't exist until runtime) to test said function with a predefined set of cases?
Example: User is prompted to write a method that returns the opposite boolean sent to it as an argument.
User types in said method.
I wrap a generic class around the method, and use a predefined set of test cases (true, false) to check it's functionality (should get false, true back)