mirror of
https://github.com/tappollo/VBFPopFlatButton.git
synced 2026-05-21 14:38:36 +08:00
36 lines
716 B
Objective-C
36 lines
716 B
Objective-C
//
|
|
// VBFPopFlatButtonTests.m
|
|
// VBFPopFlatButtonTests
|
|
//
|
|
// Created by Victor Baro on 16/08/2014.
|
|
// Copyright (c) 2014 Victor Baro. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <XCTest/XCTest.h>
|
|
|
|
@interface VBFPopFlatButtonTests : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation VBFPopFlatButtonTests
|
|
|
|
- (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 {
|
|
// This is an example of a functional test case.
|
|
XCTAssert(YES, @"Pass");
|
|
}
|
|
|
|
|
|
|
|
@end
|