alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Groovy example source code file (StringSourcesStubTestCase.groovy)

This example Groovy source code file (StringSourcesStubTestCase.groovy) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Groovy tags/keywords

file, file, map, map, string, string, stringsourcesstubtestcase, stringsourcesstubtestcase, stubtestcase

The Groovy StringSourcesStubTestCase.groovy source code

/*
 * Copyright 2003-2010 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 org.codehaus.groovy.tools.stubgenerator

/**
 * A subclass of <code>StubTestCase for simple cases
 * when you don't want to create a directory with full blown samples,
 * you can use it by overriding <code>provideSources()
 * to provide code sources as strings. 
 *
 * @author Guillaume Laforge
 */
abstract class StringSourcesStubTestCase extends StubTestCase {

    /**
     * All sub classes should implement this method to provide the sources to be jointly compiled
     * in the form of Strings.
     * <p/>
     * Example of mapping:
     * <pre>
     *  ['com/foo/Bar.groovy': '''
     *      package com.foo
     *      class Bar {}
     *  ''']
     * </code>
* * @return a mapping of source file names and their source code */ abstract Map<String, String> provideSources() /** * Create a temporary directory to store the provided sources. * * @return a temporary directory */ protected File sourcesRootPath() { def path = createTempDirectory() if (debug) println ">>> sources root path: ${path}" def sources = provideSources() sources.each { String relativeFilePath, String sourceCode -> createNecessaryPackageDirs(path, relativeFilePath) def sourceFile = new File(path, relativeFilePath) if (debug) println " -> ${sourceFile}" sourceFile << sourceCode } return path } }

Other Groovy examples (source code examples)

Here is a short list of links related to this Groovy StringSourcesStubTestCase.groovy source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 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.