Not finding what you are looking for? Request a recipe!

  1. Avg. Rating 5.0
  2. Avg. Rating 4.4
  3. Avg. Rating 4.4
  4. Avg. Rating 4.4
  5. Avg. Rating 4.0

    Create an application that can use the FlexUnit framework

    Download and unpack the FlexUnit framework and include the flexunit.swc in the application's compilation path.

  6. Avg. Rating 3.9

    Create a FlexUnit TestCase

    Create a class that extends TestCase and include one or more public methods whose name starts with test.

  7. Avg. Rating 3.6

    Create an application to run FlexUnit tests

    Create an application that uses a TestSuite instance and TestRunnerBase component to run the tests.

  8. Avg. Rating 3.6
  9. Avg. Rating 3.5
  10. Avg. Rating 3.4

    Singleton Pattern

    ActionScript 3 does not support private or protected constructors preventing common implementation techniques for the singleton pattern. By using a static initializer and a check in the constructor, it is possible to ensure only a single instance of a class is created.