mirror of https://github.com/apache/maven.git
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:
parent
1f509eacf7
commit
545e23eb3a
|
@ -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>
|
|
@ -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" ) );
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue