Tagged Questions

0
votes
1answer
46 views

Best Practices for how to include unit tests in a library

I'm working on a general code library for ActionScript 3.0 called as3lib which includes several extensions to the core API and some useful functions. I've written several unit tests (using FlexUnit) …
0
votes
9answers
1k views

flexunit with pure ActionScript project in Flex Builder 3

If you create a pure ActionScript project in Flex Builder 3 and want to do unit testing using flexunit, what is the best option? The built-in Flex builder will refuse to build the mxml file …
0
votes
3answers
101 views

Running FlexUnit4 tests in Hudson with ant

I'm just starting to try figure out how to go about continuous integration and test driven development, specifically in Flex 4. I'd like to run FlexUnit4 tests from an ant script initiated in Hudson. …
9
votes
8answers
1k views

Automating QA on Flex Application

I have a Flex Application that needs to be tested and our QA department is really adament on using some form of automated-testing tools like HP's QuickTest Pro (QTP). However, QTP requires that you …
0
votes
4answers
331 views

How to set up Flex Unit 4

Does anyone know of any guides or any sort of documentation on how to set up the new Flex Builder 4 beta? I've been pulling my hair all day long, none of my tests are executed and I can't for the life …
0
votes
2answers
117 views

How can I load a local resource synchronously in Flex 3?

I want to store some test data for a FlexUnit test in small XML files in my Flex project, and access them trivially for the flex test. How can I load these bits of data synchronously? HTTPService is …
1
vote
2answers
229 views

Flex, Flexunit: How to test that an event is dispatched twice?

I'm testing some event dispatch code in a Flex app, using FlexUnit's addAsync method for testing that events are dispatched. Great so far, I can ensure that at least one event was fired. However, I …
1
vote
1answer
150 views

Why is there no assertError() function in FlexUnit?

It seems that most XUnit testing frameworks provide assertions for the times when you want to assert that a given operation will thrown an exception (or an Error in AS3 parlance.) Is there some …
0
votes
1answer
32 views

FlexUnit Execution Time

Is there a way to know how long one test took in FlexUnit? Is there a way to know how long all tests took?
0
votes
2answers
246 views

AsUnit verses FlexUnit – which is “better”?

I'm learning ActionScript/Flex at the moment, and it's come time for me to start unit testing. My reading shows that there are two main frameworks out there: FlexUnit and AsUnit. Is there any reason …
0
votes
2answers
399 views

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 …
1
vote
2answers
190 views

Configure Eclipse to run my FlexUnit tests automatically

I'd like to set up my projects in Eclipse to run FlexUnit tests everytime I save my work. I found an example with JUnit here : …
1
vote
1answer
334 views

flexunit addAsync chaining

For some reason, addAsync chaining in a flexunit test as described in this article utterly fails to work when I try to do it. public function testWhatever():void { var cont:EventDispatcher = new …
0
votes
1answer
700 views

JUnit Eclipse plugin source-code?

Hi all, I'm looking into writing an Eclipse plugin for FlexUnit and was wondering where I could get the sources for the JUnit Eclipse plugin. I checked the JUnit sources at sourceforge but couldn't …