tomcat-maven-plugin-it/src/main/java/org/apache/tomcat/maven/it/AbstractDeployWarProjectIT.java [53:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testIt()
        throws Exception
    {
        final String responseBody = executeVerifyWithGet();
        assertNotNull( "Received message body must not be null.", responseBody );
        assertContains( "Response must match expected content.", "It works !!", responseBody );

        assertTrue( "Tomcat folder should exist in target folder of project at " + webappHome,
                    new File( webappHome, "target/tomcat" ).exists() );
        logger.info( "Error Free Log check" );
        verifier.verifyErrorFreeLog();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tomcat-maven-plugin-it/src/main/java/org/apache/tomcat/maven/it/AbstractDeployWarOnlyProjectIT.java [53:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testIt()
        throws Exception
    {
        final String responseBody = executeVerifyWithGet();
        assertNotNull( "Received message body must not be null.", responseBody );
        assertContains( "Response must match expected content.", "It works !!", responseBody );

        assertTrue( "Tomcat folder should exist in target folder of project at " + webappHome,
                    new File( webappHome, "target/tomcat" ).exists() );
        logger.info( "Error Free Log check" );
        verifier.verifyErrorFreeLog();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



