Examples of FMVerifier


Examples of net.flexmojos.oss.test.FMVerifier

    @Test
    public void configurator()
        throws Exception
    {
        File testDir = getProject( "/concept/configurator" );
        FMVerifier v = test( testDir, "flexmojos:configurator" );
        v.verifyTextInLog( "Running configurator for a SWF project" );
        v.verifyTextInLog( "configurator-1.0-SNAPSHOT.swf" );
    }
View Full Code Here

Examples of net.flexmojos.oss.test.FMVerifier

    @Test
    public void attachAsdoc()
        throws Exception
    {
        FMVerifier v = standardConceptTester( "attach-asdoc" );
        File target = new File( v.getBasedir(), "target" );

        Assert.assertTrue( target.exists() );

        File doc = new File( target, "attach-asdoc-1.0-SNAPSHOT-asdoc.zip" );
        Assert.assertTrue( doc.exists() );
View Full Code Here

Examples of net.flexmojos.oss.test.FMVerifier

    @Test( enabled = false )
    public void font2swf()
        throws Exception
    {
        FMVerifier v = testIssue( "flexmojos-183", "-DisIt=true" );
        String dir = v.getBasedir();

        File target = new File( dir, "target" );
        File main = new File( target, "flexmojos-183-1.0-SNAPSHOT.swf" );

        assertSeftExit( main, 3539, v );
View Full Code Here

Examples of net.flexmojos.oss.test.FMVerifier

    new MetadataXpp3Writer().write(
        WriterFactory.newXmlWriter(libArtifactMetadataFile),
        libArtifactMetadata);

    File appTestDir = getProject("/issues/flexmojos-136/app");
    FMVerifier appVerifier = test(appTestDir, "compile",
        "-DconfigurationReport");

    Xpp3Dom appConfigReportDOM = getFlexConfigReport(appVerifier, "app",
        "1.0");
    Xpp3Dom rslPath = appConfigReportDOM
View Full Code Here
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.