~ubuntu-branches/ubuntu/saucy/gnash/saucy-proposed

« back to all changes in this revision

Viewing changes to testsuite/misc-haxe.all/classes.all/utils/CompressionAlgorithm_as.hx

  • Committer: Bazaar Package Importer
  • Author(s): Sindhudweep Narayan Sarkar
  • Date: 2009-10-07 00:06:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20091007000610-mj9rwqe774gizn1j
Tags: 0.8.6-0ubuntu1
new upstream release 0.8.6 (LP: #435897)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// CompressionAlgorithm_as.hx:  ActionScript 3 "CompressionAlgorithm" class, for Gnash.
 
2
//
 
3
// Generated by gen-as3.sh on: 20090515 by "rob". Remove this
 
4
// after any hand editing loosing changes.
 
5
//
 
6
//   Copyright (C) 2009 Free Software Foundation, Inc.
 
7
//
 
8
// This program is free software; you can redistribute it and/or modify
 
9
// it under the terms of the GNU General Public License as published by
 
10
// the Free Software Foundation; either version 3 of the License, or
 
11
// (at your option) any later version.
 
12
//
 
13
// This program is distributed in the hope that it will be useful,
 
14
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
// GNU General Public License for more details.
 
17
//
 
18
// You should have received a copy of the GNU General Public License
 
19
// along with this program; if not, write to the Free Software
 
20
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
//
 
22
 
 
23
// This test case must be processed by CPP before compiling to include the
 
24
//  DejaGnu.hx header file for the testing framework support.
 
25
 
 
26
#if flash9
 
27
//import flash.utils.CompressionAlgorithm;
 
28
import flash.display.MovieClip;
 
29
#end
 
30
import flash.Lib;
 
31
import Type;
 
32
 
 
33
// import our testing API
 
34
import DejaGnu;
 
35
 
 
36
// Class must be named with the _as suffix, as that's the same name as the file.
 
37
class CompressionAlgorithm_as {
 
38
    static function main() {
 
39
        #if !flash9
 
40
                        DejaGnu.note("this is not a valid test for this version of flash");
 
41
                #end
 
42
                #if flash9
 
43
                        DejaGnu.note("this is unimplemented in haxe, no tests will be conducted");
 
44
                
 
45
                //var x1:CompressionAlgorithm = new CompressionAlgorithm();
 
46
 
 
47
        // Make sure we actually get a valid class        
 
48
        //if (x1 != null) {
 
49
        //    DejaGnu.pass("CompressionAlgorithm class exists");
 
50
        //} else {
 
51
        //    DejaGnu.fail("CompressionAlgorithm class doesn't exist");
 
52
        //}
 
53
 
 
54
// Tests to see if all the methods exist. All these do is test for
 
55
// existance of a method, and don't test the functionality at all. This
 
56
// is primarily useful only to test completeness of the API implementation.
 
57
        #end
 
58
        // Call this after finishing all tests. It prints out the totals.
 
59
        DejaGnu.done();
 
60
    }
 
61
}
 
62
 
 
63
// local Variables:
 
64
// mode: C++
 
65
// indent-tabs-mode: t
 
66
// End:
 
67