Tuesday, February 28, 2012

Re: System property rdbms.driver must be set

I had this, and was missing the test helper:

public class MyTest
{
  private final LocalServiceTestHelper mysqlhelper = new LocalServiceTestHelper(new LocalRdbmsServiceTestConfig());

  @Before
  public void setUp()
  {
    mysqlhelper.setUp();
  }

  @After
  public void tearDown()
  {
    mysqlhelper.tearDown();
  }

 :

}


Hope that help you, and anyone else who comes to this post because of the error message.


-c.

No comments:

Post a Comment