1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package org.xwiki.rendering.test.cts

File IgnoredRenderingTestClassRunner.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart10.png
0% of files have more coverage

Code metrics

4
9
2
1
67
25
4
0.44
4.5
2
2

Classes

Class Line # Actions
IgnoredRenderingTestClassRunner 31 9 0% 4 1
0.9333333493.3%
 

Contributing tests

No tests hitting this source file were found.

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package org.xwiki.rendering.test.cts;
21   
22    import org.junit.internal.builders.IgnoredClassRunner;
23    import org.junit.runner.Description;
24   
25    /**
26    * Used to ignore tests for which there is CTS data but no Syntax test data.
27    *
28    * @version $Id: 67df34d8232c32fa96b1c226f28989357255c146 $
29    * @since 4.1M1
30    */
 
31    public class IgnoredRenderingTestClassRunner extends IgnoredClassRunner
32    {
33    /**
34    * @see #IgnoredRenderingTestClassRunner(Class, TestData)
35    */
36    private final TestData testData;
37   
38    /**
39    * @see #IgnoredRenderingTestClassRunner(Class, TestData)
40    */
41    private Class<?> testClass;
42   
43    /**
44    * @param testClass the {@link RenderingTest} class
45    * @param testData the Test Data, passed to the Rendering Test instance executing
46    */
 
47  267 toggle public IgnoredRenderingTestClassRunner(Class<?> testClass, TestData testData)
48    {
49  267 super(testClass);
50  267 this.testClass = testClass;
51  267 this.testData = testData;
52    }
53   
 
54  267 toggle @Override
55    public Description getDescription()
56    {
57    // Add the cause of the ignore at the end of the test description
58  267 String testName = this.testData.computeTestName();
59  267 if (this.testData.syntaxData == null) {
60  243 testName = testName + " - Missing";
61  24 } else if (this.testData.isFailingTest()) {
62  24 testName = testName + " - Failing";
63    }
64   
65  267 return Description.createTestDescription(this.testClass, testName);
66    }
67    }