Usually when you're building a program you have a main method, and to test if the small changes you made work, you just run the program like normal.
I like building libraries however, and I'd like to quickly test some methods to see if they work correctly.
Currently I just create a dummy Main.java file and run that, but I'm wondering if there's a better way.
(I'm not looking for unit testing, just quickly testing prototypes)
Thanks!