You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by mh...@apache.org on 2012/04/05 07:01:24 UTC

svn commit: r1309651 - in /incubator/flex/whiteboard/mheidegger/core-tests: ./ src/ src/main/ src/main/actionscript/ src/test/ src/test/actionscript/ src/test/actionscript/mx/ src/test/actionscript/mx/formatters/

Author: mheidegger
Date: Thu Apr  5 05:01:24 2012
New Revision: 1309651

URL: http://svn.apache.org/viewvc?rev=1309651&view=rev
Log:
* First build scripts

Added:
    incubator/flex/whiteboard/mheidegger/core-tests/   (with props)
    incubator/flex/whiteboard/mheidegger/core-tests/build.gradle
    incubator/flex/whiteboard/mheidegger/core-tests/src/
    incubator/flex/whiteboard/mheidegger/core-tests/src/main/
    incubator/flex/whiteboard/mheidegger/core-tests/src/main/actionscript/
    incubator/flex/whiteboard/mheidegger/core-tests/src/main/actionscript/Test.as
    incubator/flex/whiteboard/mheidegger/core-tests/src/test/
    incubator/flex/whiteboard/mheidegger/core-tests/src/test/actionscript/
    incubator/flex/whiteboard/mheidegger/core-tests/src/test/actionscript/mx/
    incubator/flex/whiteboard/mheidegger/core-tests/src/test/actionscript/mx/formatters/
    incubator/flex/whiteboard/mheidegger/core-tests/src/test/actionscript/mx/formatters/CurrencyFormatterTest.as

Propchange: incubator/flex/whiteboard/mheidegger/core-tests/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Apr  5 05:01:24 2012
@@ -0,0 +1 @@
+build

Added: incubator/flex/whiteboard/mheidegger/core-tests/build.gradle
URL: http://svn.apache.org/viewvc/incubator/flex/whiteboard/mheidegger/core-tests/build.gradle?rev=1309651&view=auto
==============================================================================
--- incubator/flex/whiteboard/mheidegger/core-tests/build.gradle (added)
+++ incubator/flex/whiteboard/mheidegger/core-tests/build.gradle Thu Apr  5 05:01:24 2012
@@ -0,0 +1,20 @@
+ext.buildDirName = 'build'
+
+buildscript {
+	repositories {
+		mavenCentral()
+	}
+	dependencies {
+		classpath group: 'org.gradlefx', name: 'gradlefx', version: '0.4.2'
+	}
+}
+
+plugins.apply('gradlefx')
+
+dependencies {
+	merged files("C:/Users/mh/Desktop/flex/frameworks/projects/framework/src")
+}
+
+type = "swc"
+
+ext.additionalCompilerOptions = ['+configname=air']
\ No newline at end of file

Added: incubator/flex/whiteboard/mheidegger/core-tests/src/main/actionscript/Test.as
URL: http://svn.apache.org/viewvc/incubator/flex/whiteboard/mheidegger/core-tests/src/main/actionscript/Test.as?rev=1309651&view=auto
==============================================================================
--- incubator/flex/whiteboard/mheidegger/core-tests/src/main/actionscript/Test.as (added)
+++ incubator/flex/whiteboard/mheidegger/core-tests/src/main/actionscript/Test.as Thu Apr  5 05:01:24 2012
@@ -0,0 +1,10 @@
+package {
+	/**
+	 * <code>Test</code>
+	 *
+	 * @author Martin Heidegger mh@leichtgewicht.at
+	 * @since
+	 */
+	public class Test {
+	}
+}

Added: incubator/flex/whiteboard/mheidegger/core-tests/src/test/actionscript/mx/formatters/CurrencyFormatterTest.as
URL: http://svn.apache.org/viewvc/incubator/flex/whiteboard/mheidegger/core-tests/src/test/actionscript/mx/formatters/CurrencyFormatterTest.as?rev=1309651&view=auto
==============================================================================
--- incubator/flex/whiteboard/mheidegger/core-tests/src/test/actionscript/mx/formatters/CurrencyFormatterTest.as (added)
+++ incubator/flex/whiteboard/mheidegger/core-tests/src/test/actionscript/mx/formatters/CurrencyFormatterTest.as Thu Apr  5 05:01:24 2012
@@ -0,0 +1,16 @@
+package mx.formatters {
+	import flash.globalization.CurrencyFormatter;
+	/**
+	 * <code>CurrencyFormatterTest</code>
+	 *
+	 * @author Martin Heidegger mh@leichtgewicht.at
+	 * @since
+	 */
+	public class CurrencyFormatterTest {
+		
+		[Test]
+		public function testInvalidFormats(): void {
+			var formatter: CurrencyFormatter = new CurrencyFormatter();
+		}
+	}
+}