package org.ebayopensource.turmeric.tools.codegen; import static org.junit.Assert.*; import java.io.File; import org.junit.Before; import org.junit.Test; /** * @author svaddi * */ public class SchemaTest extends AbstractServiceGeneratorTestCase { /** * @param name */ public SchemaTest(){} File destDir = null; File prDir = null; File binDir = null; @Before public void init() throws Exception{ testingdir.ensureEmpty(); destDir = testingdir.getDir(); binDir = testingdir.getFile("bin"); } /** * @throws Exception * @check Exceptions need to be handled */ @Test public void schema() throws Exception { String testArgs1[] = new String[] { "-genType","schema", "-interface","org.ebayopensource.turmeric.tools.codegen.IHelloWorld", "-serviceName","HelloWorldService", "-scv","1.0.0", "-dest",destDir.getAbsolutePath(), "-src",destDir.getAbsolutePath(), "-bin",binDir.getAbsolutePath(), }; performDirectCodeGen(testArgs1, binDir); } }