aboutsummaryrefslogtreecommitdiffstats
path: root/org.jacoco.core.test.validation.groovy
diff options
context:
space:
mode:
authorAndres Almiray <aalmiray@yahoo.com>2018-11-07 23:45:19 +0100
committerEvgeny Mandrikov <Godin@users.noreply.github.com>2018-11-07 23:45:19 +0100
commit470a132fc8001a8c2f76bfe19dba5bc0366fd665 (patch)
treefb3730bf6ff779b4df23c12c0b92d9cf6ce7a3d9 /org.jacoco.core.test.validation.groovy
parent0de0b1abb76affd5645b299d4488e9ef02f77be3 (diff)
downloadplatform_external_jacoco-470a132fc8001a8c2f76bfe19dba5bc0366fd665.tar.gz
platform_external_jacoco-470a132fc8001a8c2f76bfe19dba5bc0366fd665.tar.bz2
platform_external_jacoco-470a132fc8001a8c2f76bfe19dba5bc0366fd665.zip
Add module with validation tests for Groovy (#733)
Diffstat (limited to 'org.jacoco.core.test.validation.groovy')
-rw-r--r--org.jacoco.core.test.validation.groovy/pom.xml74
-rw-r--r--org.jacoco.core.test.validation.groovy/src/org/jacoco/core/test/validation/groovy/GroovyDataClassTest.java30
-rw-r--r--org.jacoco.core.test.validation.groovy/src/org/jacoco/core/test/validation/groovy/targets/GroovyDataClassTarget.groovy30
3 files changed, 134 insertions, 0 deletions
diff --git a/org.jacoco.core.test.validation.groovy/pom.xml b/org.jacoco.core.test.validation.groovy/pom.xml
new file mode 100644
index 00000000..58eec680
--- /dev/null
+++ b/org.jacoco.core.test.validation.groovy/pom.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Eclipse Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/epl-v10.html
+
+ Contributors:
+ Andres Almiray - initial API and implementation
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.jacoco</groupId>
+ <artifactId>org.jacoco.core.test.validation</artifactId>
+ <version>0.8.3-SNAPSHOT</version>
+ <relativePath>../org.jacoco.core.test.validation</relativePath>
+ </parent>
+
+ <artifactId>org.jacoco.core.test.validation.groovy</artifactId>
+
+ <name>JaCoCo :: Test :: Core :: Validation Groovy</name>
+
+ <properties>
+ <gmaven.version>1.6.2</gmaven.version>
+ <groovy.version>2.5.3</groovy.version>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>org.jacoco.core.test</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy</artifactId>
+ <version>${groovy.version}</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.gmavenplus</groupId>
+ <artifactId>gmavenplus-plugin</artifactId>
+ <version>${gmaven.version}</version>
+ <executions>
+ <execution>
+ <id>compile</id>
+ <phase>process-sources</phase>
+ <goals>
+ <goal>compile</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <targetBytecode>${groovy.targetBytecode}</targetBytecode>
+ <sources>
+ <source>
+ <directory>${project.build.sourceDirectory}</directory>
+ <includes>
+ <include>**/*.groovy</include>
+ </includes>
+ </source>
+ </sources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/org.jacoco.core.test.validation.groovy/src/org/jacoco/core/test/validation/groovy/GroovyDataClassTest.java b/org.jacoco.core.test.validation.groovy/src/org/jacoco/core/test/validation/groovy/GroovyDataClassTest.java
new file mode 100644
index 00000000..10f3d682
--- /dev/null
+++ b/org.jacoco.core.test.validation.groovy/src/org/jacoco/core/test/validation/groovy/GroovyDataClassTest.java
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Andres Almiray - initial API and implementation
+ *
+ *******************************************************************************/
+package org.jacoco.core.test.validation.groovy;
+
+import org.jacoco.core.test.validation.ValidationTestBase;
+import org.jacoco.core.test.validation.groovy.targets.GroovyDataClassTarget;
+import org.junit.Test;
+
+/**
+ * Test of <code>data class</code>es.
+ */
+public class GroovyDataClassTest extends ValidationTestBase {
+ public GroovyDataClassTest() {
+ super(GroovyDataClassTarget.class);
+ }
+
+ @Test
+ public void test_method_count() {
+ assertMethodCount(1);
+ }
+}
diff --git a/org.jacoco.core.test.validation.groovy/src/org/jacoco/core/test/validation/groovy/targets/GroovyDataClassTarget.groovy b/org.jacoco.core.test.validation.groovy/src/org/jacoco/core/test/validation/groovy/targets/GroovyDataClassTarget.groovy
new file mode 100644
index 00000000..08044069
--- /dev/null
+++ b/org.jacoco.core.test.validation.groovy/src/org/jacoco/core/test/validation/groovy/targets/GroovyDataClassTarget.groovy
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Andres Almiray - initial API and implementation
+ *
+ *******************************************************************************/
+package org.jacoco.core.test.validation.groovy.targets
+
+/* This annotation generates the following
+ * - a constructor that takes an int as argument
+ * - a suitable implementation of toString()
+ * - a suitable implementation of hashCode()
+ * - a suitable implementation of equals(Object)
+ * - a public method named canEqual(Object)
+ * - a getter & setter for the valRead property
+ */
+@groovy.transform.Canonical
+class GroovyDataClassTarget { // assertEmpty()
+
+ int valRead // assertEmpty()
+
+ static void main(String[] args) {
+ new GroovyDataClassTarget() // assertFullyCovered()
+ }
+}