GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Github flash badge
Homepage: http://spinach.andascarygoat.com/tags/badjo
Clone URL: git://github.com/zmack/badjo.git
zmack (author)
Sat Apr 26 06:02:04 -0700 2008
commit  44248685209bf95c55050ad3e383f28ae2f157c0
tree    e768145c6e5996d8e7ac0c1ba22b687f83cbdb81
parent  38ac2a0de40e8c1542b21d797237db25a8f0afa7
badjo / test / ProjectListTest.as
100644 30 lines (23 sloc) 0.616 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package {
 
  import asunit.framework.TestCase;
 
  public class ProjectListTest extends TestCase {
    private var instance:ProjectList;
 
    public function ProjectListTest(methodName:String=null) {
      super(methodName)
    }
 
    override protected function setUp():void {
      super.setUp();
      instance = new ProjectList();
    }
 
    override protected function tearDown():void {
      super.tearDown();
      instance = null;
    }
 
    public function testInstantiated():void {
      assertTrue("instance is ProjectList", instance is ProjectList);
    }
 
    public function testFailure():void {
      assertTrue("Failing test", false);
    }
  }
}