mirror of
https://github.com/CocoaLumberjack/CocoaLumberjack.git
synced 2026-05-07 20:12:46 +00:00
18 lines
277 B
Objective-C
18 lines
277 B
Objective-C
//
|
|
// main.m
|
|
// Benchmarking
|
|
//
|
|
// CocoaLumberjack Benchmarking
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "PerformanceTesting.h"
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
@autoreleasepool {
|
|
[PerformanceTesting startPerformanceTests];
|
|
}
|
|
return 0;
|
|
}
|