A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
fail(failMessage:String) — Package Function, org.flexunit.asserts
Fails a test with the given message.
fail(failMessage:String) — Static Method , class org.flexunit.Assert
Fails a test with the argument message.
Fail — class, package org.flexunit.internals.runners.statements
The Fail class is responsible for throwing a failure error when it is evaluated.
Fail(error:Error) — Constructor, class org.flexunit.internals.runners.statements.Fail
Constructor.
failed — Property, class org.flexunit.events.rule.QuantityMatcher
failEventExpectation — Event, class org.flexunit.events.rule.EventExpectations
FAIL_EXPECTATION — Constant Static Property, class org.flexunit.events.rule.ExpectationEvent
failNotNull(message:String, object:Object) — Static Method , class org.flexunit.Assert
Asserts that an object is not null.
failNotTrue(message:String, condition:Boolean) — Static Method , class org.flexunit.Assert
Asserts that a condition is not true.
failNull(message:String, object:Object) — Static Method , class org.flexunit.Assert
Asserts that an object is not null.
failOnComplete(event:flash.events:Event, passThroughData:Object) — method, class org.flexunit.internals.runners.statements.ExpectAsync
A handler method that is called in order to fail for a given asynchronous event once an it has been dispatched.
failOnComplete(event:flash.events:Event, passThroughData:Object) — method, interface org.flexunit.internals.runners.statements.IAsyncHandlingStatement
A handler method that is called in order to fail for a given asynchronous event once an it has been dispatched.
failOnEvent(testCase:Object, target:flash.events:IEventDispatcher, eventName:String, timeout:int, timeoutHandler:Function) — Static Method , class org.flexunit.async.Async
This method is used when you want to fail if a given event occurs, within a given amount of time, during an asynchronous test.
FailOnTimeout — class, package org.flexunit.internals.runners.statements
The FailOnTimeout is a decorator that is responsible for determing whether a specific test method has exceeded a timeout period for execution.
FailOnTimeout(timeout:Number, statement:org.flexunit.internals.runners.statements:IAsyncStatement) — Constructor, class org.flexunit.internals.runners.statements.FailOnTimeout
Constructor.
failTrue(message:String, condition:Boolean) — Static Method , class org.flexunit.Assert
Asserts that a condition is false.
Failure — class, package org.flexunit.runner.notification
A Failure holds a description of the failed test and the exception that was thrown while running it.
Failure(description:org.flexunit.runner:IDescription, exception:Error) — Constructor, class org.flexunit.runner.notification.Failure
Constructor.
failureCount — Property, class org.flexunit.runner.Result
Returns the number of tests that failed over the course of the run.
FailureFormatter — class, package org.flexunit.reporting
The FailureFormatter is responsible for formatting potential failures.
failures — Property, class org.flexunit.internals.runners.model.MultipleFailureException
Returns the array of all of the failures.
failures — Property, class org.flexunit.runner.Result
Returns the Failures describing tests that failed and the problems they encountered.
fault(info:Object) — method, class org.flexunit.async.AsyncNativeTestResponder
Dispatches an AsyncResponseEvent with the orignalResponder, a "fault" status, and the provided info object.
fault(info:Object) — method, class org.flexunit.async.AsyncTestResponder
Dispatches an AsyncResponseEvent with the orignalResponder, a "fault" status, and the provided info object.
fault(info:Object, passThroughData:Object) — method, interface org.flexunit.async.ITestResponder
This method is called by TestCase when an error has been received.
fault(info:Object, passThroughData:Object) — method, class org.flexunit.async.TestResponder
This method is called by TestCase when an error has been received.
Field — class, package flex.lang.reflect
An object representing a property or variable of a class or instance.
Field(fieldXML:XML, isStatic:Boolean, definedBy:Class, isProperty:Boolean) — Constructor, class flex.lang.reflect.Field
Field Constructor
FieldBuilder — class, package flex.lang.reflect.builders
FieldBuilder(classXML:XML, clazz:Class) — Constructor, class flex.lang.reflect.builders.FieldBuilder
FieldMetaDataSorter — class, package org.flexunit.runner.manipulation.fields
A field sorter capable of sorting fields based on the order argument
FieldMetaDataSorter(invert:Boolean) — Constructor, class org.flexunit.runner.manipulation.fields.FieldMetaDataSorter
Constructor
fields — Property, class flex.lang.reflect.Klass
Returns an Array of Field instances representing the individual static and instance properties and variables of the class.
filter(filter:org.flexunit.runner.manipulation:IFilter) — method, class org.flexunit.internals.runners.FlexUnit1ClassRunner
Will apply a Filter to the test object.
filter(filter:org.flexunit.runner.manipulation:IFilter) — method, interface org.flexunit.runner.manipulation.IFilterable
Remove tests that don't pass the parameter filter.
filter(filter:org.flexunit.runner.manipulation:IFilter) — method, class org.flexunit.runners.ParentRunner
Applies the provided Filter to the runner.
FilterRequest — class, package org.flexunit.internals.requests
A Request that filters a test class.
FilterRequest(classRequest:org.flexunit.runner:IRequest, filter:org.flexunit.runner.manipulation:IFilter) — Constructor, class org.flexunit.internals.requests.FilterRequest
Constructor.
filterWith(filterOrDescription:any) — method, interface org.flexunit.runner.IRequest
Creates a request that is filtered based on the provided filterOrDescription which is either an Filter or an IDescription.
filterWith(filterOrDescription:any) — method, class org.flexunit.runner.Request
Returns a Request that either filters based on a Description or a Filter.
filterWithDescription(desiredDescription:org.flexunit.runner:IDescription) — method, class org.flexunit.runner.Request
Returns a Request that only runs contains tests whose Description equals desiredDescription.
filterWithFilter(filter:org.flexunit.runner.manipulation:IFilter) — method, class org.flexunit.runner.Request
Returns a Request that only contains those tests that should run when a filter is applied.
findDeepAnnotation(type:String) — method, class org.flexunit.experimental.theories.ParameterSignature
finished() — method, class org.flexunit.events.rule.TimeoutMonitor
fireTestAssumptionFailed(failure:org.flexunit.runner.notification:Failure) — method, interface org.flexunit.runner.notification.IRunNotifier
Invoke to tell all registered IRunListeners that an atomic test flagged that it assumed something false.
fireTestAssumptionFailed(failure:org.flexunit.runner.notification:Failure) — method, class org.flexunit.runner.notification.RunNotifier
Invoke to tell listeners that an atomic test flagged that it assumed something false.
fireTestFailure(failure:org.flexunit.runner.notification:Failure) — method, interface org.flexunit.runner.notification.IRunNotifier
Invoke to tell all registered IRunListeners that an atomic test failed.
fireTestFailure(failure:org.flexunit.runner.notification:Failure) — method, class org.flexunit.runner.notification.RunNotifier
Invoke to tell listeners that an atomic test failed.
fireTestFinished() — method, class org.flexunit.internals.runners.model.EachTestNotifier
Instructs the notifier that the test method has finished running.
fireTestFinished(description:org.flexunit.runner:IDescription) — method, interface org.flexunit.runner.notification.IRunNotifier
Invoke to tell all registered IRunListeners that an atomic test finished.
fireTestFinished(description:org.flexunit.runner:IDescription) — method, class org.flexunit.runner.notification.RunNotifier
Invoke to tell listeners that an atomic test finished.
fireTestIgnored() — method, class org.flexunit.internals.runners.model.EachTestNotifier
Instructs the notifier that the test method has been ignored.
fireTestIgnored(description:org.flexunit.runner:IDescription) — method, interface org.flexunit.runner.notification.IRunNotifier
Invoke to tell all registered IRunListeners that an atomic test was ignored.
fireTestIgnored(description:org.flexunit.runner:IDescription) — method, class org.flexunit.runner.notification.RunNotifier
Invoke to tell listeners that an atomic test was ignored.
fireTestRunFinished(result:org.flexunit.runner:Result) — method, interface org.flexunit.runner.notification.IRunNotifier
Invoke to tell all registered IRunListeners that the test run has finished.
fireTestRunFinished(result:org.flexunit.runner:Result) — method, class org.flexunit.runner.notification.RunNotifier
Do not invoke.
fireTestRunStarted(description:org.flexunit.runner:IDescription) — method, interface org.flexunit.runner.notification.IRunNotifier
Invoke to tell all registered IRunListeners that the test run has started.
fireTestRunStarted(description:org.flexunit.runner:IDescription) — method, class org.flexunit.runner.notification.RunNotifier
Do not invoke.
fireTestStarted() — method, class org.flexunit.internals.runners.model.EachTestNotifier
Instructs the notifier that the test method has started.
fireTestStarted(description:org.flexunit.runner:IDescription) — method, interface org.flexunit.runner.notification.IRunNotifier
Invoke to tell all registered IRunListeners that an atomic test has started.
fireTestStarted(description:org.flexunit.runner:IDescription) — method, class org.flexunit.runner.notification.RunNotifier
Invoke to tell listeners that an atomic test is about to start.
FlexEnvironmentBuilder — class, package org.fluint.uiImpersonation.flex
Builds a visual test environment for Flex projects
FlexEnvironmentBuilder(visualDisplayRoot:flash.display:DisplayObjectContainer) — Constructor, class org.fluint.uiImpersonation.flex.FlexEnvironmentBuilder
Constructor
flex.lang.reflect — package
flex.lang.reflect.builders — package
flex.lang.reflect.cache — package
flex.lang.reflect.metadata — package
flex.lang.reflect.utils — package
FlexMXVisualTestEnvironment — class, package org.fluint.uiImpersonation.flex
A visual test environment for Flex projects
FlexMXVisualTestEnvironment(baseClass:Class) — Constructor, class org.fluint.uiImpersonation.flex.FlexMXVisualTestEnvironment
Constructor Creates a new test environment using the baseClass as a base.
FlexSparkVisualTestEnvironment — class, package org.fluint.uiImpersonation.flex
Builds a visual test environment for Flex 4.0 and above projects
FlexSparkVisualTestEnvironment(baseClass:Class) — Constructor, class org.fluint.uiImpersonation.flex.FlexSparkVisualTestEnvironment
Constructor Creates a new test environment using the baseClass as a base.
flexUnit1Builder() — method, class org.flexunit.internals.builders.AllDefaultPossibilitiesBuilder
Returns a FlexUnit1Builder.
FlexUnit1Builder — class, package org.flexunit.internals.builders
The FlexUnit1Builder potentially builds a FlexUnit1ClassRunner for a provided testClass.
FlexUnit1ClassRunner — class, package org.flexunit.internals.runners
The FlexUnit1ClassRunner is responsible for running FlexUnit1 classes.
FlexUnit1ClassRunner(klassOrTest:any) — Constructor, class org.flexunit.internals.runners.FlexUnit1ClassRunner
Constructor.
flexUnit4Builder() — method, class org.flexunit.internals.builders.AllDefaultPossibilitiesBuilder
Returns a FlexUnit4Builder.
flexUnit4Builder() — method, class org.flexunit.internals.builders.OnlyRecognizedTestClassBuilder
Returns a FlexUnit4Builder.
FlexUnit4Builder — class, package org.flexunit.internals.builders
The FlexUnit4Builder builds a BlockFlexUnit4ClassRunner for a provided testClass.
FlexUnit4Builder() — Constructor, class org.flexunit.internals.builders.FlexUnit4Builder
Constructor.
FlexUnit4QualifiedBuilder — class, package org.flexunit.internals.builders
This class is used as an alternate builder for FlexUnit 4.
FlexUnitCore — class, package org.flexunit.runner
FlexUnit4 Version: 4.2.0 The FlexUnitCore is responsible for executing objects that implement an IRequest interface.
FlexUnitCore() — Constructor, class org.flexunit.runner.FlexUnitCore
Create a new FlexUnitCore to run tests.
fluint1Builder() — method, class org.flexunit.internals.builders.AllDefaultPossibilitiesBuilder
If Flex classes are compiled into the swc, returns a Fluint1Builder; otherwise, returns a NullBuilder.
forSeconds(seconds:Number) — Static Method , class org.fluint.sequence.SequenceDelay
Factory method for an instance with a delay expressed in seconds.
forValue(name:String, value:Object) — Static Method , class org.flexunit.experimental.theories.PotentialAssignment
Creates a PotentialAssignment for a given name and value.
FrameWatcher — class, package org.flexunit.internals.runners.watcher
FrameWatcher(stage:flash.display:Stage) — Constructor, class org.flexunit.internals.runners.watcher.FrameWatcher
FrameworkMethod — class, package org.flexunit.runners.model
Represents a method on a test class to be invoked at the appropriate point in test execution.
FrameworkMethod(method:flex.lang.reflect:Method) — Constructor, class org.flexunit.runners.model.FrameworkMethod
Construcotr.
from(dispatcher:flash.events:IEventDispatcher) — method, class org.flexunit.events.rule.EventRule
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z