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 the Asserts. Here it is my FlexUnitApplication.mxml.

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
           xmlns:s="library://ns.adobe.com/flex/spark" 
           xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:flexui="flexunit.flexui.*" creationComplete="onCreationComplete()">
<fx:Script>
    <![CDATA[
        import flexUnitTests.FapdaTestSuite;

        public function currentRunTestSuite():Array
        {
            var testsToRun:Array = new Array();
            testsToRun.push(flexUnitTests.FapdaTestSuite);
            return testsToRun;
        }


        private function onCreationComplete():void
        {
            testRunner.runWithFlexUnit4Runner(currentRunTestSuite(), "FAPDA-client");
        }

    ]]>
</fx:Script>
<fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<flexui:FlexUnitTestRunnerUI id="testRunner">
</flexui:FlexUnitTestRunnerUI>

Any hints about it?

Thank you

link|improve this question

67% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.