Monday, July 25, 2011

"No runnable methods" error when doing a Maven install

When doing a maven install I kept getting a Build Failed with this error being generated when attempting to run the test cases:


java.lang.Exception: No runnable methods at
org.junit.internal.runners.TestClassMethodsRunner.testAborted



To solve this problem I first ran a maven clean:

$ mvn clean

and then ran the maven install

$ mvn install

Starting up HSQLDB

java -classpath [lib_path]/hsqldb.jar org.hsqldb.Server

Ctrl-C to kill the the Session

Sunday, July 10, 2011

Changing your windows drive on the command prompt

To change your drive from say C:/ to D:/ just do the following:

C:/>d:
D:/>

So all that is required is for you to type in "d:" and press Enter.