You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2018/08/19 13:54:08 UTC

groovy git commit: move to tests-vm8

Repository: groovy
Updated Branches:
  refs/heads/GROOVY_2_5_X 116bbe03b -> 5fbdb6c04


move to tests-vm8


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

Branch: refs/heads/GROOVY_2_5_X
Commit: 5fbdb6c04073c7916d4ac0985fed19264744b496
Parents: 116bbe0
Author: Paul King <pa...@asert.com.au>
Authored: Sun Aug 19 23:53:56 2018 +1000
Committer: Paul King <pa...@asert.com.au>
Committed: Sun Aug 19 23:53:56 2018 +1000

----------------------------------------------------------------------
 .../runtime/vm8/InterfaceConversionMapTest.java | 55 --------------------
 .../runtime/vm8/InterfaceConversionMapTest.java | 55 ++++++++++++++++++++
 2 files changed, 55 insertions(+), 55 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/5fbdb6c0/src/test/org/codehaus/groovy/runtime/vm8/InterfaceConversionMapTest.java
----------------------------------------------------------------------
diff --git a/src/test/org/codehaus/groovy/runtime/vm8/InterfaceConversionMapTest.java b/src/test/org/codehaus/groovy/runtime/vm8/InterfaceConversionMapTest.java
deleted file mode 100644
index 7c5dce8..0000000
--- a/src/test/org/codehaus/groovy/runtime/vm8/InterfaceConversionMapTest.java
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- *  Licensed to the Apache Software Foundation (ASF) under one
- *  or more contributor license agreements.  See the NOTICE file
- *  distributed with this work for additional information
- *  regarding copyright ownership.  The ASF licenses this file
- *  to you under the Apache License, Version 2.0 (the
- *  "License"); you may not use this file except in compliance
- *  with the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing,
- *  software distributed under the License is distributed on an
- *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *  KIND, either express or implied.  See the License for the
- *  specific language governing permissions and limitations
- *  under the License.
- */
-package org.codehaus.groovy.runtime.vm8;
-
-import groovy.lang.GroovyShell;
-import org.codehaus.groovy.control.CompilerConfiguration;
-import org.codehaus.groovy.runtime.DefaultGroovyMethods;
-import org.junit.Assert;
-import org.junit.Test;
-
-import java.util.Map;
-
-public class InterfaceConversionMapTest {
-
-    private final GroovyShell shell;
-
-    public InterfaceConversionMapTest() {
-        final CompilerConfiguration cc = new CompilerConfiguration();
-        cc.setTargetBytecode(CompilerConfiguration.JDK8);
-        shell = new GroovyShell(cc);
-    }
-
-    // GROOVY-7330
-    @Test
-    public void testMapToProxy() {
-        final Map map = (Map) shell.evaluate("[x: {10}, y: {20}]");
-        final SomeInterface si = DefaultGroovyMethods.asType(map, SomeInterface.class);
-        Assert.assertEquals(20, si.y());
-        Assert.assertEquals(10, si.x());
-    }
-
-    public interface SomeInterface {
-        default int x() {
-            return 1;
-        }
-
-        int y();
-    }
-}

http://git-wip-us.apache.org/repos/asf/groovy/blob/5fbdb6c0/subprojects/tests-vm8/src/test/java/org/codehaus/groovy/runtime/vm8/InterfaceConversionMapTest.java
----------------------------------------------------------------------
diff --git a/subprojects/tests-vm8/src/test/java/org/codehaus/groovy/runtime/vm8/InterfaceConversionMapTest.java b/subprojects/tests-vm8/src/test/java/org/codehaus/groovy/runtime/vm8/InterfaceConversionMapTest.java
new file mode 100644
index 0000000..7c5dce8
--- /dev/null
+++ b/subprojects/tests-vm8/src/test/java/org/codehaus/groovy/runtime/vm8/InterfaceConversionMapTest.java
@@ -0,0 +1,55 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you under the Apache License, Version 2.0 (the
+ *  "License"); you may not use this file except in compliance
+ *  with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing,
+ *  software distributed under the License is distributed on an
+ *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ *  KIND, either express or implied.  See the License for the
+ *  specific language governing permissions and limitations
+ *  under the License.
+ */
+package org.codehaus.groovy.runtime.vm8;
+
+import groovy.lang.GroovyShell;
+import org.codehaus.groovy.control.CompilerConfiguration;
+import org.codehaus.groovy.runtime.DefaultGroovyMethods;
+import org.junit.Assert;
+import org.junit.Test;
+
+import java.util.Map;
+
+public class InterfaceConversionMapTest {
+
+    private final GroovyShell shell;
+
+    public InterfaceConversionMapTest() {
+        final CompilerConfiguration cc = new CompilerConfiguration();
+        cc.setTargetBytecode(CompilerConfiguration.JDK8);
+        shell = new GroovyShell(cc);
+    }
+
+    // GROOVY-7330
+    @Test
+    public void testMapToProxy() {
+        final Map map = (Map) shell.evaluate("[x: {10}, y: {20}]");
+        final SomeInterface si = DefaultGroovyMethods.asType(map, SomeInterface.class);
+        Assert.assertEquals(20, si.y());
+        Assert.assertEquals(10, si.x());
+    }
+
+    public interface SomeInterface {
+        default int x() {
+            return 1;
+        }
+
+        int y();
+    }
+}