Package com.mysema.query.jpa

Source Code of com.mysema.query.jpa.GenericExporterTest

package com.mysema.query.jpa;

import java.io.File;

import org.junit.Test;

import com.mysema.query.codegen.GenericExporter;

public class GenericExporterTest {

    @Test
    public void test() {
        GenericExporter exporter = new GenericExporter();
        exporter.setTargetFolder(new File("target/" + GenericExporterTest.class.getSimpleName()));
        exporter.export(getClass().getPackage());
    }
   
}
TOP

Related Classes of com.mysema.query.jpa.GenericExporterTest

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.