|
Groovy example source code file (JavadocAssertionTestBuilderTest.groovy)
The Groovy JavadocAssertionTestBuilderTest.groovy source code/* * Copyright 2003-2009 the original author or authors. * * Licensed 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 groovy.util import junit.framework.TestCase import org.codehaus.groovy.control.MultipleCompilationErrorsException /** * @author Merlyn Albery-Speyer */ class JavadocAssertionTestBuilderTest extends GroovyTestCase { def builder void setUp() { builder = new JavadocAssertionTestBuilder() } void testBuildsTest() { Class test = builder.buildTest("SomeClass.java", '/** <pre class="groovyTestCase"> assert true*/ public class SomeClass { }') assert test.newInstance() instanceof TestCase assert test.simpleName == "SomeClassJavadocAssertionTest" test.newInstance().testAssertionFromSomeClassLine1() } void testAssertionsAreCalled() { Class test = builder.buildTest("SomeClass.java", '/** <pre class="groovyTestCase"> assert false */ public class SomeClass { }') shouldFail(AssertionError) { test.newInstance().testAssertionFromSomeClassLine1() } } void testLineNumbering() { Class test = builder.buildTest("SomeClass.java", ''' /** <pre class="groovyTestCase"> assert true * Nothing on line 3 * Two on this line <pre class="groovyTestCase"> assert true assert true*/ public class SomeClass { } ''') assert test.methods.findAll { it.name =~ /test.*/ }.size() == 3 test.newInstance().testAssertionFromSomeClassLine2() test.newInstance().testAssertionFromSomeClassLine4a() test.newInstance().testAssertionFromSomeClassLine4b() } void testNoTestBuiltWhenThereAreNoAssertions() { Class test = builder.buildTest("SomeClass.java", "/** .. */ public class SomeClass { }") assert test == null } void testAssertionsMaySpanMultipleLines() { Class test = builder.buildTest("SomeClass.java", ''' /** <pre class="groovyTestCase"> assert( * true) * assert true </pre> */ public class SomeClass { } ''') test.newInstance().testAssertionFromSomeClassLine2() } void testTagMustBeInsideJavadoc() { Class test = builder.buildTest("SomeClass.java", ''' /** <pre class="groovyTestCase"> assert true */ public class SomeClass { public static void main(String[] args) { // <pre class="groovyTestCase"> assert false } } ''') assert test.methods.findAll { it.name =~ /test.*/ }.size() == 1 test.newInstance().testAssertionFromSomeClassLine2() } void testClassNamesMayBeReusedAcrossPackages() { Class package1Test = builder.buildTest("./test/com/someplace/package1/SomeClass.java", ''' /** <pre class="groovyTestCase"> assert true */ public class SomeClass { } ''') Class package2Test = builder.buildTest("./test/com/someplace/package2/SomeClass.java", ''' /** <pre class="groovyTestCase"> assert true */ public class SomeClass { } ''') assert package1Test.simpleName == "SomeClassJavadocAssertionTest" assert package2Test.simpleName == "SomeClassJavadocAssertionTest" assert package1Test != package2Test } void testClassNeedNotBeAPreTag() { Class test = builder.buildTest("./test/com/someplace/package1/SomeClass.java", ''' /** <code class="groovyTestCase"> assert true */ public class SomeClass { } ''') test.newInstance().testAssertionFromSomeClassLine2() } void testAssertionSyntaxErrorsReportedAtTestTime() { Class test = builder.buildTest("SomeClass.java", ''' /** <pre class="groovyTestCase"> assert #@$@ */ public class SomeClass { } ''') shouldFail(MultipleCompilationErrorsException) { test.newInstance().testAssertionFromSomeClassLine2() } } void testDecodesCommonHtml() { Class test = builder.buildTest("SomeClass.java", ''' /** <pre class="groovyTestCase"> assert 3 < 5 * assert """ ><"&'&at;–""" == """ ><"&'@-""" */ public class SomeClass { } ''') test.newInstance().testAssertionFromSomeClassLine2(); } } Other Groovy examples (source code examples)Here is a short list of links related to this Groovy JavadocAssertionTestBuilderTest.groovy source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.