View Javadoc

1   package org.apache.maven.surefire.its;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *     http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  
23  import java.io.File;
24  
25  /**
26   * JUnit4 RunListener Integration Test.
27   * 
28   * @author <a href="mailto:matthew.gilliard@gmail.com">Matthew Gilliard</a>
29   */
30  public class JUnit4RunListenerIT
31      extends SurefireVerifierTestClass
32  {
33      public JUnit4RunListenerIT()
34      {
35          super( "/junit4-runlistener" );
36      }
37  
38      public void testJUnit4RunListener()
39          throws Exception
40      {
41          addGoal( "-Dprovider=surefire-junit4" );
42          addGoal( "-DjunitVersion=4.4" );
43          executeTest();
44          verifyErrorFreeLog();
45          assertResults();
46      }
47  
48      private void assertResults()
49      {
50          assertTestSuiteResults( 1, 0, 0, 0 );
51          final File targetDir = getSubFile( "target" );
52  
53          assertFileExists( new File( targetDir, "runlistener-output-1.txt" ) );
54          assertFileExists( new File( targetDir, "runlistener-output-2.txt" ) );
55      }
56  
57      public void testRunlistenerJunitCoreProvider()
58          throws Exception
59      {
60          addGoal( "-Dprovider=surefire-junit47" );
61          addGoal( "-DjunitVersion=4.8.1" );
62          executeTest();
63          verifyErrorFreeLog();
64          assertResults();
65      }
66  
67      private void assertFileExists( final File file )
68      {
69          assertTrue( "File doesn't exist: " + file.getAbsolutePath(), file.exists() );
70      }
71  
72  }