File: AllTests.m

package info (click to toggle)
popplerkit.framework 0.0.20051227svn-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,632 kB
  • sloc: objc: 2,303; cpp: 672; sh: 475; ansic: 55; makefile: 29
file content (36 lines) | stat: -rw-r--r-- 991 bytes parent folder | download | duplicates (9)
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
31
32
33
34
35
36
//
//  AllTests.m
//  PopplerKit
//
//  Created by Stefan Kleine Stegemann on 7/28/05.
//  Copyright 2005 . All rights reserved.
//

#import "AllTests.h"
#import "PopplerDocumentTest.h"
#import "PopplerPageTest.h"
#import "PopplerTextSearchTest.h"
#import "PopplerRendererTest.h"
#import "PopplerCachingRendererTest.h"

@implementation AllTests

+ (TestSuite*) suite { 
   TestSuite *suite = [TestSuite suiteWithName: @"PopplerKit Tests"]; 

   // Add your tests here ... 
   [suite addTest: [TestSuite suiteWithClass: [PopplerDocumentTest class]]];
   [suite addTest: [TestSuite suiteWithClass: [PopplerPageTest class]]];
   [suite addTest: [TestSuite suiteWithClass: [PopplerTextSearchTest class]]];
   [suite addTest: [TestSuite suiteWithClass: [PopplerRendererTest class]]];
   [suite addTest: [TestSuite suiteWithClass: [PopplerCachingRendererTest class]]];

   return suite; 
}

@end

int main( int argc, const char * argv[]) { 
    TestRunnerMain([AllTests class]); 
    return 0; 
}