forked from lua-alchemy/lua-alchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patched fluint 1.1.1 to be able to modify test list
See fluint.patch
- Loading branch information
Showing
5 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fluint.patch -whitespace |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
diff --git a/fluint/src/main/flex/net/digitalprimates/fluint/tests/TestCase.as b/fluint/src/main/flex/net/digitalprimates/fluint/tests/TestCase.as | ||
index 4036b97..4269f21 100644 | ||
--- a/fluint/src/main/flex/net/digitalprimates/fluint/tests/TestCase.as | ||
+++ b/fluint/src/main/flex/net/digitalprimates/fluint/tests/TestCase.as | ||
@@ -29,6 +29,7 @@ package net.digitalprimates.fluint.tests { | ||
import flash.utils.*; | ||
|
||
import mx.collections.CursorBookmark; | ||
+ import mx.collections.ICollectionView; | ||
import mx.collections.IViewCursor; | ||
import mx.collections.Sort; | ||
import mx.collections.SortField; | ||
@@ -89,6 +90,14 @@ package net.digitalprimates.fluint.tests { | ||
private var testCollection:XMLListCollection; | ||
|
||
/** | ||
+ * Gets the collection of test cases. Used for integration with FlexUnit4 | ||
+ * AG: ADDED from current SVN head | ||
+ */ | ||
+ public function getTests():ICollectionView { | ||
+ return testCollection; | ||
+ } | ||
+ | ||
+ /** | ||
* @private | ||
*/ | ||
private var cursor:IViewCursor; |