I had extended my Event class to include references to other objects. I also created @OneToOne annotations of them.
All of a sudden the tests wouldn’t run.
Well the problem lay in the sample data that is loaded into the table during the tests. I was referencing the appfuse User class. During the autogeneration of my Event class, it autogenerates three records into ./tree/src/test/resources/sample-data.xml . However, the original Appfuse where you did the quickstart from the main site, only outputs two User records.
So I added a third User record and everything fell into place and started working again.
Peace out.

