/ide/test/org/voisen/crayon/CrayonSuite.as

https://github.com/GunioRobot/crayon · ActionScript · 26 lines · 12 code · 4 blank · 10 comment · 0 complexity · 50d6e7de724e8de5fbf65a0b424b2ded MD5 · raw file

  1. package org.voisen.crayon
  2. {
  3. import org.voisen.crayon.command.startup.CreateWindowsCommandTest;
  4. import org.voisen.crayon.view.editor.EditorWindowTest;
  5. [Suite]
  6. [RunWith("org.flexunit.runners.Suite")]
  7. public class CrayonSuite
  8. {
  9. //--------------------------------------------------------------------------
  10. //
  11. // Commands
  12. //
  13. //--------------------------------------------------------------------------
  14. public var createWindowsCommandTest:CreateWindowsCommandTest;
  15. //--------------------------------------------------------------------------
  16. //
  17. // Views
  18. //
  19. //--------------------------------------------------------------------------
  20. public var editorWindowTest:EditorWindowTest;
  21. }
  22. }