35 lines
735 B
Objective-C
35 lines
735 B
Objective-C
//
|
|
// EZAudioWaveformFromFileExampleTests.m
|
|
// EZAudioWaveformFromFileExampleTests
|
|
//
|
|
// Created by Syed Haris Ali on 12/15/13.
|
|
// Copyright (c) 2015 Syed Haris Ali. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
@interface EZAudioWaveformFromFileExampleTests : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation EZAudioWaveformFromFileExampleTests
|
|
|
|
- (void)setUp
|
|
{
|
|
[super setUp];
|
|
// Put setup code here. This method is called before the invocation of each test method in the class.
|
|
}
|
|
|
|
- (void)tearDown
|
|
{
|
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
[super tearDown];
|
|
}
|
|
|
|
- (void)testExample
|
|
{
|
|
XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
|
|
}
|
|
|
|
@end
|