Package com.asakusafw.compiler.windgate.testing.model

Examples of com.asakusafw.compiler.windgate.testing.model.Simple


        assertThat(exporterPath, is(notNullValue()));
        Location exporterLocation = Location.fromPath(exporterPath, '/');
        assertThat(exporterLocation.isPrefix(), is(true));

        ModelOutput<Simple> source = tester.openOutput(Simple.class, importerLocation);
        Simple model = new Simple();
        model.setValueAsString("Hello1, world!");
        source.write(model);
        model.setValueAsString("Hello2, world!");
        source.write(model);
        model.setValueAsString("Hello3, world!");
        source.write(model);
        source.close();

        assertThat(tester.runStages(info), is(true));
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.windgate.testing.model.Simple

Copyright © 2018 www.massapicom. 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.