1//
2//  unit_tests.h
3//  openssl
4//
5//  Created by J. Osborne on 1/25/10.
6//  Copyright 2010 Apple. All rights reserved.
7//
8
9#import <SenTestingKit/SenTestingKit.h>
10#include <dispatch/dispatch.h>
11
12@interface unit_tests : SenTestCase {
13}
14
15// these run ONCE, not one per test unit
16+(void)tearDown;
17
18-(void)testTrustedKeyExists;
19-(void)testTrustedKeyDoesntOveride;
20
21@end
22