You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by pl...@apache.org on 2017/09/16 13:51:03 UTC

incubator-tamaya git commit: [TAMAYA-289] The tests of BannerManagerTest cause PIT to fail. Therefore I excluded this class from the coverage check.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 32be37e25 -> 79f5240b8


[TAMAYA-289] The tests of BannerManagerTest cause PIT to fail. Therefore I excluded this class from the coverage check.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/79f5240b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/79f5240b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/79f5240b

Branch: refs/heads/master
Commit: 79f5240b8fc948e868439ac0b8d92cb7976d04b2
Parents: 32be37e
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Sat Sep 16 15:50:12 2017 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Sat Sep 16 15:50:12 2017 +0200

----------------------------------------------------------------------
 .../org/apache/tamaya/core/internal/BannerManagerTest.java    | 7 +++++++
 pom.xml                                                       | 3 +++
 2 files changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/79f5240b/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
----------------------------------------------------------------------
diff --git a/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java b/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
index a7d6557..9d2156b 100644
--- a/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
+++ b/code/core/src/test/java/org/apache/tamaya/core/internal/BannerManagerTest.java
@@ -27,6 +27,13 @@ import java.security.AccessControlContext;
 import java.security.AccessController;
 import java.security.Permission;
 
+/*
+ * Note:
+ * The tests of this class will fail PIT, our coverage tool.
+ * Therefore we excluded this class in the parent POM
+ * from the test execution.
+ * Oliver B. Fischer, 2017-09-16
+ */
 public class BannerManagerTest {
 
     @Test

http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/79f5240b/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 05de4bb..d33887e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -307,6 +307,9 @@
                         <targetClasses>
                             <param>org.apache.tamaya.*</param>
                         </targetClasses>
+                        <excludedClasses>
+                            <param>org.apache.tamaya.core.internal.BannerManagerTest</param>
+                        </excludedClasses>
 			                  <excludedMethods>
 			                      <param>toString</param>
                         </excludedMethods>