You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by sh...@apache.org on 2017/05/12 03:54:50 UTC

groovy git commit: Add JIRA issue number comments to tests

Repository: groovy
Updated Branches:
  refs/heads/master 2989bfcae -> 955963f45


Add JIRA issue number comments to tests


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/955963f4
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/955963f4
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/955963f4

Branch: refs/heads/master
Commit: 955963f45156b9f64fe5ef9b9a6b4b1e6ba42c7d
Parents: 2989bfc
Author: Shil Sinha <sh...@apache.org>
Authored: Thu May 11 23:53:38 2017 -0400
Committer: Shil Sinha <sh...@apache.org>
Committed: Thu May 11 23:53:38 2017 -0400

----------------------------------------------------------------------
 src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy        | 1 +
 .../classgen/asm/sc/ArraysAndCollectionsStaticCompileTest.groovy    | 1 +
 src/test/org/codehaus/groovy/transform/DelegateTransformTest.groovy | 1 +
 3 files changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/955963f4/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy b/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy
index 0af35a0..4e8a818 100644
--- a/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy
+++ b/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy
@@ -70,6 +70,7 @@ class STCExtensionMethodsTest extends StaticTypeCheckingTestCase {
     '''
     }
 
+    //GROOVY-7953
     void testExtensionPropertyWithPrimitiveReceiver() {
         assertScript '''
             assert 4.even

http://git-wip-us.apache.org/repos/asf/groovy/blob/955963f4/src/test/org/codehaus/groovy/classgen/asm/sc/ArraysAndCollectionsStaticCompileTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/org/codehaus/groovy/classgen/asm/sc/ArraysAndCollectionsStaticCompileTest.groovy b/src/test/org/codehaus/groovy/classgen/asm/sc/ArraysAndCollectionsStaticCompileTest.groovy
index 3e6f278..9f45e6b 100644
--- a/src/test/org/codehaus/groovy/classgen/asm/sc/ArraysAndCollectionsStaticCompileTest.groovy
+++ b/src/test/org/codehaus/groovy/classgen/asm/sc/ArraysAndCollectionsStaticCompileTest.groovy
@@ -128,6 +128,7 @@ class ArraysAndCollectionsStaticCompileTest extends ArraysAndCollectionsSTCTest
         }
     }
 
+    //GROOVY-8074
     void testMapSubclassPropertyStyleAccess() {
         assertScript '''
             class MyMap extends LinkedHashMap {

http://git-wip-us.apache.org/repos/asf/groovy/blob/955963f4/src/test/org/codehaus/groovy/transform/DelegateTransformTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/org/codehaus/groovy/transform/DelegateTransformTest.groovy b/src/test/org/codehaus/groovy/transform/DelegateTransformTest.groovy
index 7b5964a..5dd6930 100644
--- a/src/test/org/codehaus/groovy/transform/DelegateTransformTest.groovy
+++ b/src/test/org/codehaus/groovy/transform/DelegateTransformTest.groovy
@@ -781,6 +781,7 @@ assert foo.dm.x == '123'
         """
     }
 
+    //GROOVY-8132
     void testOwnerPropertyPreferredToDelegateProperty() {
         assertScript '''
             class Foo {