gusimplewhiteboard
wbPerfTests.mm
Go to the documentation of this file.
1//
2// wbPerfTests.m
3// wbPerfTests
4//
5// Created by Rene Hexel on 30/03/2014.
6// Copyright (c) 2014 Rene Hexel. All rights reserved.
7//
8#import <SenTestingKit/SenTestingKit.h>
9#import "post_test.h"
10#import "get_test.h"
11
12@interface wbPerfTests: SenTestCase
13
14@end
15
16@implementation wbPerfTests
17
18- (void) setUp
19{
20 [super setUp];
21 // Put setup code here. This method is called before the invocation of each test method in the class.
22}
23
24- (void )tearDown
25{
26 // Put teardown code here. This method is called after the invocation of each test method in the class.
27 [super tearDown];
28}
29
30- (void) testGet
31{
32 get_test getter;
33 getter.run();
34}
35
36
37- (void) testPost
38{
39 post_test poster;
40 poster.run(100000000);
41}
42
43@end
void tearDown()
Definition: wbPerfTests.mm:24
void testGet()
Definition: wbPerfTests.mm:30
void testPost()
Definition: wbPerfTests.mm:37