~extremepopcorn/dhlib/dhlib_ep

« back to all changes in this revision

Viewing changes to lib/draw/test/NonVisual.hx

  • Committer: edA-qa mort-ora-y
  • Date: 2010-02-16 05:36:32 UTC
  • Revision ID: eda-qa@disemia.com-20100216053632-60lt7fndfi3fgblw
first

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* <license>
 
2
 * This file is part of the dis-Emi-A HaXe Library. Copyright © edA-qa mort-ora-y
 
3
 * For full copyright and license information please refer to doc/license.txt.
 
4
 * </license> 
 
5
 */
 
6
package draw.test;
 
7
 
 
8
class NonVisual
 
9
{
 
10
        static function main()
 
11
        {
 
12
                var r = new haxe.unit.TestRunnerX();
 
13
                r.add( new TestColor() );
 
14
#if flash
 
15
                //thougb non-Visual these still need the flash library, otherwise it
 
16
                //is too difficult to separate out the presentation and non-presentation parts
 
17
                r.add( new TestTileDesc() );
 
18
#end
 
19
                r.runExit();    
 
20
        }
 
21
}