Tagged Questions

5
votes
6answers
2k views

How can I unit test Flex applications from within the IDE or a build script?

I'm currently working on an application with a frontend written in Adobe Flex 3. I'm aware of FlexUnit but what I'd really like is a unit test runner for Ant/NAnt and a runner that integrates with the ...
4
votes
1answer
126 views

Are there good example Flex project with well written unit tests?

My team is willing to start to write unit tests of our code (we will try even TDD). Are there some good example Flex projects with well written unit tests?
4
votes
1answer
184 views

What's the best way to organise FlexUnit 4 tests in FlexBuilder 3?

I've recently started practising test driven development - thus far I've been working on a library project, so I've organised my FlexUnit tests in a separate FlexBuilder 3 project, linking against my ...
4
votes
1answer
671 views

Unit Testing Flex Event Handlers

What methods do you use to unit test event handlers, particularly if they require information from the event (such as mouse coordinates, or the target of the event)? Is the most common practice to ...
3
votes
1answer
647 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
232 views

Flex Unit 4 — Hello World

I want to use the Flex Unit 4 Suite. I don't really have any experience with unit testing. I downloaded the Turnkey project but I was a little overwhelmed. I basically just want to start by ...
3
votes
4answers
765 views

Unit Testing Flex/Flash Libraries in FlashBuilder

For a normal Flash/Flex application I would include my Unit Tests in my application project (perhaps in a tests source folder alongside my main src folder). I'd then have two application entry points: ...
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 ...
2
votes
1answer
320 views

Problems running tests on air libraries using IntelliJ Idea 10

I'm using IntelliJ Idea as an IDE to develop AIR applications. I use flexmojos-4.0 to compile and run tests in the command line, and they run fine. However, when I try to run the same tests on Idea, I ...
2
votes
1answer
205 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
0answers
371 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
1answer
797 views

Flex unit testing with ANT vs Flash Builder 4

I have just tried setup unit testing in Flash Builder 4, and it working nicely. A setup of a parallel test source structure and using Flash Builder 4:s new TestCase and new TestSuite I was up and ...
2
votes
4answers
478 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
348 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
1answer
424 views

Problem with Flex unit testing in IntelliJ

I have some problems running FlexUnit tests in IntelliJ. Every time I execute test, Internet Explorer (which is not even set as default browser) pops up and blocks unit test, i.e. blocks it as add ...
1
vote
1answer
164 views

Howto create a partial mock using mockto-flex?

Is it posible to create a partial mock using mockito-flex?
1
vote
1answer
131 views

Unit testing puremvc based flex application

I have a flex application written using PureMVC framework.Now,I want to write tests.We are using FlashBuilder 4.Is FlexUnit sufficient for testing? Are there any issues you have faced while writing ...
1
vote
1answer
318 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
0answers
490 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
360 views

BUilding Flex project with unit testing on cruise control

I have a flex application build with actionscript 3 on flex builder with unit testing on it using flexUnit4. I want to build this project on my cruise control and i don't know how?
1
vote
2answers
305 views

How can I mock out a service using local data in Flex 3?

I am writing a small flex application that will, eventually, call PHP services to perform its work. In the meantime, however, I would like to have it use local data in XML form to allow me to develop ...
1
vote
3answers
876 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
1answer
1k views

FlexUnit component testing patterns: use addAsync or manually initialize?

We've been using Flex for about 6 months here at work, and I found that my first batches of FlexUnit tests involving custom components would tend to follow this sort of pattern: import ...
0
votes
2answers
50 views

Using asMock, how can I satisfy a concrete and interface requirement in SetupResult.forCall

The ValidationManager has a public Dictionary for storing UI components that implement the IValidatable interface. I am testing a command class that needs an instance of ValidationManager and I want ...
0
votes
3answers
45 views

How can I extract test results from Flash?

I've got a suite of unit tests for my project (pure AS3), and they all work brilliantly outputting standard JUnit XML to the trace output window. However, when I tried to get my test suite running on ...
0
votes
2answers
89 views

Flash Builder: Change default suite for unit tests?

What are the steps to change your default suite when running unit tests in Flash Builder 4 with PureMVC?
0
votes
1answer
243 views

Mockolate: dispatch binding events?

Is it possible to ask Mockolate to dispatch binding events? For example, given this class: class Person { [Bindable] public var name:String; } I'd like the mock: var mockPerson:Person = ...