Problem with failed asserts in FlexUnit4
Hello,
I'm trying out the FlexUnit4 Beta 1 using FlexBuilder 3 on a Mac OS X Leopard, executing the tests that come with the TurnKey release everything seems to be OK, but when I modify a test so it fails and try to execute the tests again and I get the following screen:

The progress bar does not move forward regardless of how long I leave the tests to run. It appears that the tests execution is halting on the first failed assertion regardless of which assertion it is. I tried several times with different assertions (ussing Assert static methods and Hamcrest-as3 assertThat) always with the same result.
One of the tests I made was to change the method testEnsureSetupComplete in flexUnitTests.flexUnit4.suites.frameworkSuite.cases.TestAsynchronousSetUpTearDown for the following:
[Test]
public function testEnsureSetupComplete() : void {
Assert.assertTrue(false); //Added line
Assert.assertEquals( 1, simpleValueOne );
Assert.assertEquals( 2, simpleValueTwo );
Assert.assertEquals( 3, simpleValueThree );
Assert.assertNull( unitializedBySetup );
}
I wonder if someone has experience something similar or has any suggestion on how to handle this problem. Let me know if you need more information.
Javier
