Package com.gwesm

Source Code of com.gwesm.TestDAO

package com.gwesm;

//import java.util.List;

import org.junit.Test;

import com.gwesm.core.GWESM;
import com.gwesm.dao.CastorDAO;
import com.gwesm.dao.DAO;

public class TestDAO {

  @Test
  public void testLoadSave() throws Exception {
    DAO dao = new CastorDAO();
    GWESM gwesm = dao.loadData("testsData\\GWESM-Sample.xml");
    dao.saveData(gwesm, "testsData\\outputs\\GWESM-Sample-Output.xml");
  }
}
TOP

Related Classes of com.gwesm.TestDAO

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.