FlexUnit is a unit testing framework for Flex and ActionScript applications and libraries
Questions tagged [flexunit]
81 questions
0
votes
1 answer
Recreating a bunch of components for flex unit testing (flexunit)
I have a bunch of NumericSteppers (start week, start year, end week, end year), which are deep within ViewStacks, NavigatorContents etc. I wanted to unit test my date steppers, and was wondering how I can go about doing that? When I initialize the…

iman453
- 9,105
- 16
- 54
- 70
0
votes
2 answers
Configuring the Flash player for use with Flexmojos executed during a Maven release:perform
I have a Maven project that uses Flexmojos to execute unit tests and build a SWC. As it executes unit tests, I need to tell Flexmojos where my Flash player is, which I do via settings.xml:
dev
…

Kkkev
- 4,716
- 5
- 27
- 43
0
votes
1 answer
How to use same prerequisite data for testing multiple modules of a large application?
I'm working on a customization game in actionscript. There are several modules of the application. The application is data intensive. In order to boot the application you need to load a lot of other swf's , JSONs etc. I do not want to test the UI…

Fahim Akhter
- 1,617
- 5
- 31
- 49
0
votes
3 answers
FlexUnit and callLater
I'm trying to use callLater with FlexUnit v0.9:
public function testCallLater():void {
Application.application.callLater( addAsync(function():void {
assertTrue(true);
}, 1000));
}
but when it runs I get this error:
ArgumentError: Error…

paleozogt
- 6,393
- 11
- 51
- 94
-1
votes
1 answer
is flexunit is really required for Flex application?
I have a doubt on Flex unit. Unit test cases are really required for flex application for displaying data.

RKCY
- 4,095
- 14
- 61
- 97
-1
votes
1 answer
Stopping FlexUnit test run, if a test fails?
I use FlexUnit 4.1 with Adobe's TestRunnerBase to run a suite of integration tests to verify the integrity of a 3-tier BlazeDS/Java EE/MySQL server.
To bypass the security checks enforced by Apache Shiro while running those tests, I have…

weltraumpirat
- 22,544
- 5
- 40
- 54