/test/com/google/maps/extras/gradients/test/AllTests.as
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 7package com.google.maps.extras.gradients.test { 8 import com.google.maps.extras.gradients.test.GradientControlTest; 9 import flexunit.framework.TestSuite; 10 11 /** 12 * Test suite for the GradientControl-related classes. 13 * 14 * @author Simon Ilyushchenko 15 */ 16 17 public class AllTests { 18 19 /** 20 * Collect all test classes and return them. 21 */ 22 public static function getAllTests():TestSuite { 23 var testSuite:TestSuite = new TestSuite(); 24 testSuite.addTestSuite(GradientControlTest); 25 return testSuite; 26 } 27 } 28}