Tagged Questions

FlexUnit is a unit testing framework for Flex and ActionScript applications and libraries

learn more… | top users | synonyms

17
votes
8answers
5k 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 ...
4
votes
1answer
187 views

Check if port is open in ANT

Is it possible to check whether a port is open using ANT tasks? I need to execute flexunit task, but before I start this task I need to check if another flexunit task is not running and blocking the ...
3
votes
1answer
583 views

Flash Builder 4.5 & FlexUnit 4.1

We have a large, multi-module product we are writing in Flex 4.1 running on top of a Java-based middle-tier. Coming from a Java background, I want to have support in our Flex environment for writing ...
3
votes
2answers
1k 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 ...
3
votes
3answers
1k 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 ...
3
votes
2answers
528 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 ...
2
votes
1answer
200 views

Performance testing using FlexUnit

FlexUnit is quite an impressive framework for testing and with the new integration in Flash Builder 4 it's a no brainer to use it. However, I'm not sure why it's necessarily exclusive to just unit ...
2
votes
1answer
473 views

Build and run FlexUnit from the command line

I am building an app using ActionScript3 with Flash Builder 4 as my IDE. The IDE supports a unit testing framework called "FlexUnit". I can build and run tests within the IDE, no problem. After ...
2
votes
2answers
241 views

How can I unit test Flex applications?

Flex is a client-side language and based on events. How can such events be mocked to allow unit testing?
2
votes
0answers
365 views

Flex Unit testing of library and mxml using FlexUnit

I have some software classes(library) to run commands on any mxml file. These classes(library) are wrapped in a SWC file. This SWC file is referenced by any sample mxml application (by adding as SWC ...
2
votes
4answers
473 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) ...
2
votes
2answers
342 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 ...
2
votes
1answer
812 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 ...
1
vote
0answers
87 views

FlexUnit: Spark component test issue (UIImpersonator)

FlexUnit 4.1 FlashBuilder 4.5.1 BACKGROUND I'm trying to test a custom Flex 4 skinnable component, using the FlexUnit UIImpersonator class. If I run my tests from a FlashBuilder Spark only project ...
1
vote
1answer
192 views

Wait for another ANT build/task to finish

I would like to make ANT process wait for another build or task to finish. The situation is: I execute a few ANT builds simultaneously. In these builds there are tasks to test the apps. ...
1
vote
0answers
442 views

FlexUnit ANT task is hanging

I'm using the ANT task to run FlexUnit on a build server. When I run the Flex Unit Tests from the Flash Builder (4) it works fine. But when running from ANT it opens the default player (FireFox in my ...
1
vote
3answers
53 views

instantiating view won't work

Hey guys! We used to write our UnitTests with FlexUnit and we were just testing our model. Now we want to test the view too. Before i run my tests i create an instance of my view and my model to test ...
1
vote
2answers
339 views

flexunit of handle customer event and Async.asyncHandler()

Any one know how does Async.asyncHandler() work and if Async.processOnEvent() can only used in [Before] method.(Any one know some helpful document besides http://docs.flexunit.org/). I define a MXML ...
1
vote
0answers
233 views

Actionscript: Flexunit: unit testing existing actionscript project

I was reading this: http://stackoverflow.com/questions/366088/flexunit-with-pure-actionscript-project-in-flex-builder-3/3472839#3472839 I am trying to do option 2 in his question. I have an existing ...
1
vote
2answers
472 views

How to use SequenceRunner with FlexUnit 4

In the FlexUnit wiki I've read about the very interesting SequenceRunner that was contributed by the Fluint folks. Now I am trying to run a test that is very similar to the example, however when ...
1
vote
0answers
292 views

FlexUnit4 async test - asyncHandler's usage isn't clear

There is the doc page about FlexUnit4's async approach: http://docs.flexunit.org/index.php?title=Writing_an_AsyncTest Here is the concept that's confusing for me: // timer is a Timer instance set to ...
1
vote
2answers
503 views

“Unable to resolve resource bundle” error when trying to run FlexUnit4 tests with IntelliJ IDEA 9.0.2

I am having a trouble to get IntelliJ IDEA 9.0.2 to run FlexUnit4 tests. The tests won't be performed because of the following error: Error: Unable to resolve resource bundle "<some name>" So ...
1
vote
4answers
696 views

Call private method in Flex, Actionscript

I need it in FlexUnit to test private methods. Is there any possibility to do this via reflection by using describeType or maybe flexUnit has some build in facility? I dislike artificial limitation ...
1
vote
2answers
169 views

Setting up functional Tests in Flex

I'm setting up a functional test suite for an application that loads an external configuration file. Right now, I'm using flexunit's addAsync function to load it and then again to test if the contents ...
1
vote
1answer
313 views

Run AIR Debug Launcher (ADL) without a GUI for continuous build

Is it possible to run the ADL without a GUI so that I can run FlexUnit tests during a nightly build? Right now, when I execute our test runner on our server (Ubuntu 9.04) it fails with the output: ...
1
vote
1answer
306 views

FlexUnit 4 and Cairngorm commands

Does anyone know if it is possible to test remote procedure calls in Cairngorm Commands with FlexUnit 4. I have an old app full of them and before I introduce FlexUnit into the mix would like to hear ...
1
vote
2answers
418 views

How can I test for an event sequence in FlexUnit 4?

I have a component that, on creation, dispatches two events to populate data fields. The events should remain separate because they're used elsewhere for distinct actions. I want to write an ...
1
vote
0answers
477 views

Flex Unit - testing a library wrapping remote objects

I'm wrapping RemoteObject inside a class for easier managing of retries, timeouts, failures and such non standard scenarios. So when wrapping a RemoteObject inside another class, how would I go about ...
1
vote
3answers
813 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. ...
1
vote
3answers
871 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
5answers
1k 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 ...
1
vote
10answers
3k 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
0answers
21 views

FlexMonkium can't work when deploy in web server

If visit wrapped swf via flexbuilder, using c:\MyApp\bin-debug\sample.html, FlexMonkium works well(The FlexMonkiumconnection button shows connected). But if I visit wrapped swf by web server, using ...
0
votes
1answer
34 views

Flex - import AbstractMatcherTestCase could not be found

I am trying to use Flex Unit in FlashBuilder 4.5.1 and I am getting the warning " import AbstractMatcherTestCase could not be found". Can anyone let me know what I'm missing? I have ...
0
votes
1answer
63 views

Running FlexUnit unable to get console output for trace

I've set up FlexUnit in my app, I want to debug a test using trace, but im not sure how to get flexunit to traceto the flashlog file. Here's part of my test task in ant, I thought the 'localtrusted' ...
0
votes
0answers
64 views

Why FlexUnit Results does not show failure messages in Eclipse Indigo + Flash Builder 4 plugin?

I'm using the technology stack in the title. When I run my FlexUnitApplication the tests fail and success correctly, but for failing ones I can't see the failure stacktrace nor the messages I set on ...
0
votes
1answer
128 views

SequenceWaiter doesn't recognize my event

I'm using this AsyncHelper. I would like to create basic test case where I would like to dispatch event from the test method (by Parsley MessageDispatcher), catch this event in any other method and ...
0
votes
0answers
51 views

How to use FlexUnit4 and manage thousands of tests in a large Adobe Flex project

I built a small application and created dozens of tests for FlexUnit4 to confirm that key functions were returning correct values. I realized that for a large project and team, we might have ...
0
votes
1answer
143 views

Does Flash Builder 4 Standard come bundled with FlexUnit?

Can anyone confirm that Flash Builder 4 STANDARD comes bundled with FlexUnit 4 just like Flash Builder 4 Premium trial does? My company is interested in buying a few copies just for unit testing an ...
0
votes
1answer
200 views

Ability to create new File Templates in Flash Builder 4

I have a class interface that I have written in a Flex project using ActionScript 3 . I write FlexUnit test cases around each implementation of that interface. To help the process of creating new ...
0
votes
1answer
180 views

How do you get FlexUnit output in JUnit format?

I am setting up FlexUnit to run from the command line and want to capture the results in JUnit format, so that I can pull them into Hudson. What are my options?
0
votes
1answer
360 views

How to run Flex unit tests from the command line on Linux?

I am setting up a FlexBuilder build under Hudson/Jenkins on a Linux system. I want to execute our unit tests, but do it without using the standard GUI-based test runner. What are my options?
0
votes
1answer
64 views

Get event object from SequenceWaiter

When I add SequenceWaiter step into the SequenceRunner, how can I get event object wich was passed into the event? There is the code from my test function: var sequence: SequenceRunner = new ...
0
votes
1answer
246 views

logging with flexunit

I am using FlexUnit4 with FlashBuilder4. A lot of the classes that I'm unit testing make use of the Flash Logger. In the main app, we use TraceTarget so that the logging shows up in the trace ...
0
votes
1answer
50 views

anyone knows the flex metadata mechanism

When I use flexunit for tests, I confused about the metadata like [Test], [Test(async, ui)], anyone knows how does the metadata parsed by the flex? how to define my own metadata
0
votes
1answer
429 views

How to set up Charles proxy for standalone Flash player during FlexUnit integration tests?

I'd like to record the AMF traffic that happens during some of my Flex application unit tests. I am using Maven/flexmojos to compile the unit tests. I've installed Charles proxy and can get it to ...
0
votes
1answer
98 views

flexUnitTasks error of “command not understood”

I use FlexUnitTasks-4.0.0.jar to generate report with ant, and the compile target is passed, and the testRunner swf file is made, but has some problem, the log is following: [flexunit] Receiving ...
0
votes
1answer
71 views

Run a single test in Flash Builder?

I have been using Flash Builder to build my flex software and I am a TDD guy. I find it irritating that I have to run ALL my tests in order to run any tests. It causes friction in my TDD workflow. ...
0
votes
1answer
32 views

Problem with FlexUnit4

I"m a bit confused because FlexUnith 4's behavior. When I use fail() in try-catch body fail method is just ignored. [Test] public function extend():void { try { ...
0
votes
2answers
470 views

FlexUnit4 in IntelliJ

When I try to run test with FlexUnit4 and IntelliJ, I get this error: SecurityError: Error #2148: SWF file ...

1 2