o adding IT it0098

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@465871 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-19 20:50:55 +00:00
parent 1f509eacf7
commit 545e23eb3a
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.it0098</groupId>
<artifactId>it0098</artifactId>
<description>Test that quoted system properties are processed correctly. [MNG-1415]</description>
<version>1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,14 @@
package org.apache.maven.it.it0098;
import junit.framework.TestCase;
public class QuotedCLIPropertyTest
extends TestCase
{
public void testPropertyValue()
{
assertEquals( "Test Property", System.getProperty( "test.property" ) );
}
}