Hi, is it possible to run Junit tests with kotlin through the command line?
Currently my folder structure has a makefile in the root, with a src and test folder
The kotlin runtime library is in the kotlinc folder
KT files in both folders are compiled to the bin folder
Then (from root) the makefile runs:
kotlinc/bin/kotlin -cp .bin/lib/junit-4.12.jar org.junit.runner.JUnitCore SymbolTableTest
But I get the error "Could not find class SymbolTableTest" (Its definitely spelled correctly)
The .class file is in the bin folder and the .kt file is in the tests folder
Have I set the -cp correctly?