/test/com/google/maps/extras/gradients/test/AllTests.as

http://gmaps-utility-library-flash.googlecode.com/ · ActionScript · 28 lines · 11 code · 4 blank · 13 comment · 0 complexity · 8ef276f487911e91c2f7da14243d8607 MD5 · raw file

  1. /**
  2. * Copyright 2009 Google Inc.
  3. * Licensed under the Apache License, Version 2.0:
  4. * http://www.apache.org/licenses/LICENSE-2.0
  5. */
  6. package com.google.maps.extras.gradients.test {
  7. import com.google.maps.extras.gradients.test.GradientControlTest;
  8. import flexunit.framework.TestSuite;
  9. /**
  10. * Test suite for the GradientControl-related classes.
  11. *
  12. * @author Simon Ilyushchenko
  13. */
  14. public class AllTests {
  15. /**
  16. * Collect all test classes and return them.
  17. */
  18. public static function getAllTests():TestSuite {
  19. var testSuite:TestSuite = new TestSuite();
  20. testSuite.addTestSuite(GradientControlTest);
  21. return testSuite;
  22. }
  23. }
  24. }