/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
- /**
- * Copyright 2009 Google Inc.
- * Licensed under the Apache License, Version 2.0:
- * http://www.apache.org/licenses/LICENSE-2.0
- */
- package com.google.maps.extras.gradients.test {
- import com.google.maps.extras.gradients.test.GradientControlTest;
- import flexunit.framework.TestSuite;
- /**
- * Test suite for the GradientControl-related classes.
- *
- * @author Simon Ilyushchenko
- */
- public class AllTests {
- /**
- * Collect all test classes and return them.
- */
- public static function getAllTests():TestSuite {
- var testSuite:TestSuite = new TestSuite();
- testSuite.addTestSuite(GradientControlTest);
- return testSuite;
- }
- }
- }