~kaaloo/grails/grails-maven-plugin

« back to all changes in this revision

Viewing changes to src/main/java/org/grails/maven/plugin/GrailsCreateUnitTestMojo.java

  • Committer: pledbrook
  • Date: 2008-12-23 12:43:57 UTC
  • Revision ID: svn-v3-single1-dHJ1bmsvZ3JhaWxzLW1hdmVuLXBsdWdpbg..:1cfb16fd-6d17-0410-8ff1-b7e8e1e2867d:trunk%2Fgrails-maven-plugin:8037
Bumped plugin version to 1.0-SNAPSHOT and changed the packages to
org.grails.maven.plugin.*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2007 the original author or authors.
 
3
 * 
 
4
 * Licensed under the Apache License, Version 2.0 (the "License");
 
5
 * you may not use this file except in compliance with the License.
 
6
 * You may obtain a copy of the License at
 
7
 * 
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 * 
 
10
 * Unless required by applicable law or agreed to in writing, software
 
11
 * distributed under the License is distributed on an "AS IS" BASIS,
 
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 * See the License for the specific language governing permissions and
 
14
 * limitations under the License.
 
15
 */
 
16
 
 
17
package org.grails.maven.plugin;
 
18
 
 
19
import org.apache.maven.plugin.MojoExecutionException;
 
20
import org.apache.maven.plugin.MojoFailureException;
 
21
 
 
22
/**
 
23
 * Creates a new Grails unit test. A unit test requires that you mock out access
 
24
 * to dynamic methods, but executes a lot quicker.
 
25
 *
 
26
 * @author <a href="mailto:aheritier@gmail.com">Arnaud HERITIER</a>
 
27
 * @version $Id$
 
28
 * @description Creates a new Grails unit test. A unit test requires that you
 
29
 * mock out access to dynamic methods, but executes a lot quicker.
 
30
 * @goal create-unit-test
 
31
 * @requiresProject false
 
32
 * @requiresDependencyResolution runtime
 
33
 * @since 0.1
 
34
 */
 
35
public class GrailsCreateUnitTestMojo extends AbstractGrailsMojo {
 
36
 
 
37
    /**
 
38
     * The name for the unit test to create.
 
39
     *
 
40
     * @parameter expression="${unitTestName}"
 
41
     */
 
42
    private String unitTestName;
 
43
 
 
44
    public void execute() throws MojoExecutionException, MojoFailureException {
 
45
        runGrails("CreateUnitTest", unitTestName, false);
 
46
    }
 
47
}