Package ch.agent.crnickl.junit

Source Code of ch.agent.crnickl.junit.T001_SetUpTest

package ch.agent.crnickl.junit;

import ch.agent.crnickl.api.Database;

public class T001_SetUpTest extends AbstractTest {

  public void test_setUp() {
    try {
      Database db = getContext().getDatabase();
      System.out.println(db.toString());
    } catch (Exception e) {
      fail(e.getMessage());
    }
  }
 
}
TOP

Related Classes of ch.agent.crnickl.junit.T001_SetUpTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.