Package net.flexmojos.oss.tests.issues

Source Code of net.flexmojos.oss.tests.issues.Issue0017Test

/**
* Flexmojos is a set of maven goals to allow maven users to compile, optimize and test Flex SWF, Flex SWC, Air SWF and Air SWC.
* Copyright (C) 2008-2012  Marvin Froeder <marvin@flexmojos.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
package net.flexmojos.oss.tests.issues;

import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.not;

import java.io.File;

import com.marvinformatics.kiss.matchers.file.FileMatchers;
import net.flexmojos.oss.test.FMVerifier;
import net.flexmojos.oss.tests.AbstractFlexMojosTests;
import org.testng.annotations.Test;

public class Issue0017Test
    extends AbstractFlexMojosTests
{
    @Test
    public void issue17()
        throws Exception
    {
        File testDir = getProject( "/issues/issue-0017" );
        FMVerifier verifier = getVerifier( testDir );
        verifier.getCliOptions().remove( "-Dflex.coverage=true" );
        verifier.executeGoal( siteGoal() );

        File asdoc = new File( testDir, "target/site/asdoc" );
        assertThat( asdoc, FileMatchers.exists() );
        assertThat( new File( asdoc, "index.html" ), FileMatchers.exists() );
        assertThat( new File( asdoc, "main.html" ), FileMatchers.exists() );

        File coverage = new File( testDir, "target/site/coverage" );
        assertThat( coverage, FileMatchers.exists() );
        assertThat( new File( coverage, "index.html" ), FileMatchers.exists() );
        assertThat( new File( coverage, "net.flexmojos.oss.coverage.CoverageDataCollector.html" ), FileMatchers.exists() );
       
        assertThat( new File( testDir, "target/asdoc" ), not( FileMatchers.exists() ) );
        assertThat( new File( testDir, "target/coverage" ), not( FileMatchers.exists() ) );
    }

}
TOP

Related Classes of net.flexmojos.oss.tests.issues.Issue0017Test

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.