Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
214 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 ...
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 ...
3
votes
3answers
214 views

Best way to reset database to known state between FlexUnit4 integration tests?

Background: I have a Flex web app that communicates with a Java back-end via BlazeDS. The Flex client is composed of a flex-client module, which holds the views and presentation models and a ...
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 ...
1
vote
2answers
57 views

How can I test a linked list object pool using FlexUnit 4?

I'm creating an object pool in AS3 that uses a stack as its base data structure (implemented with a linked list). I'm new to FlexUnit, but I'd really like to have some unit tests for my classes (as ...
1
vote
0answers
101 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
129 views

why asyncHandler in FlexUnit fails in capturing TIMERCOMPLETE event?

I am testing timerevent with flex unit. Follwing is the code which i tried , it always goes to cmdFailed function (Time out function).I am new to flex unit .any help would be greatly appreciated. ...
1
vote
2answers
364 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
2answers
490 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
300 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
1answer
311 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 ...
0
votes
0answers
27 views

Specific line of code causes the endless delay /updated 2/

I need to find a specific element inside a combo box. The box has over 100 items, and is displayed with vertical scrollbars. The idea is as follows: Open combo box element Check, if the value under ...
0
votes
2answers
136 views

Flex unit aysnc problem: Error: Asynchronous Event Received out of Order

I am writing test cases to test function with flexunit 4. I am using aysnc method. But when I add two or more asyncHandlers to the instance. I meet the problem: Error: Asynchronous Event Received out ...
0
votes
0answers
76 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
2answers
131 views

flexunit: Parametrized tests

I am trying to run a parametrized tests... Was trying to implement it like it explained here: http://docs.flexunit.org/index.php?title=Parameterized_Test_Styles Here is what my test case looking ...
0
votes
0answers
67 views

Execute FlexUnit tests do not run

When I "execute FlexUnit tests" on any of my test files, Flash Builder builds a FlexUnitApplication.mxml file that has no tests inside it, then runs my tests and returns 0 tests, even though I have my ...
0
votes
1answer
18 views

is it possible to use flexunit with Visual studio 2008 ide?

is it possible to use flexunit with Visual studio 2008?
0
votes
2answers
1k views

BlazeDS error when running Flexunit tests: Detected duplicate HTTP-based FlexSessions

I am using the Maven Flexmojos plug-in to run some FlexUnit4 integration tests on the command line against a Jetty/Java/Spring Security/BlazeDS backend. These integration tests run in a stand-alone ...
0
votes
1answer
537 views

How do I FlexUnit Test Parsley commands?

I needed some guidance on how to use FlexUnit 4 within Flash Builder, to unit test a Parsley-frameworked Flex application. I have tried lookign at one or two sites but with no avail. Thanks
0
votes
1answer
137 views

FlexUnit 4 Error

I am facing a strange FlexUnit Error: Whoa... been asked to send another complete and I already did that The error seem to occur when the number of test exceede 27...? (the tests never ...
0
votes
2answers
485 views

FlexUnit4 in IntelliJ

When I try to run test with FlexUnit4 and IntelliJ, I get this error: SecurityError: Error #2148: SWF file ...
0
votes
3answers
254 views

FlexUnit4: [Test(expect=“Error”)] doesn't catch errors?

The title says it all. The following code produces a failed test, not a passing test (as I would expect): [Test(expects="Error")] public function someTest():void { throw Error("this test doesn't ...
0
votes
2answers
81 views

How can I access the test name of a FlexUnit 4 test?

In FlexUnit 1 it is possible to access the name of the currently-running test using the TestCase.getName() method because all tests subclass TestCase. In FlexUnit 4, however, there's no base class ...
-1
votes
1answer
54 views

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.