61 lines
2.1 KiB
Swift
61 lines
2.1 KiB
Swift
//
|
|
// AAInfographicsDemoTests.swift
|
|
// AAInfographicsDemoTests
|
|
//
|
|
// Created by An An on 2017/6/8.
|
|
// Copyright © 2017年 An An. All rights reserved.
|
|
//*************** ...... SOURCE CODE ...... ***************
|
|
//***...................................................***
|
|
//*** https://github.com/AAChartModel/AAChartKit ***
|
|
//*** https://github.com/AAChartModel/AAChartKit-Swift ***
|
|
//***...................................................***
|
|
//*************** ...... SOURCE CODE ...... ***************
|
|
|
|
/*
|
|
|
|
* -------------------------------------------------------------------------------
|
|
*
|
|
* 🌕 🌖 🌗 🌘 ❀❀❀ WARM TIPS!!! ❀❀❀ 🌑 🌒 🌓 🌔
|
|
*
|
|
* Please contact me on GitHub,if there are any problems encountered in use.
|
|
* GitHub Issues : https://github.com/AAChartModel/AAChartKit-Swift/issues
|
|
* -------------------------------------------------------------------------------
|
|
* And if you want to contribute for this project, please contact me as well
|
|
* GitHub : https://github.com/AAChartModel
|
|
* StackOverflow : https://stackoverflow.com/users/12302132/codeforu
|
|
* JianShu : https://www.jianshu.com/u/f1e6753d4254
|
|
* SegmentFault : https://segmentfault.com/u/huanghunbieguan
|
|
*
|
|
* -------------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
import XCTest
|
|
@testable import AAInfographicsDemo
|
|
|
|
class AAInfographicsDemoTests: XCTestCase {
|
|
|
|
override func setUp() {
|
|
super.setUp()
|
|
// Put setup code here. This method is called before the invocation of each test method in the class.
|
|
}
|
|
|
|
override func tearDown() {
|
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
super.tearDown()
|
|
}
|
|
|
|
func testExample() {
|
|
// This is an example of a functional test case.
|
|
// Use XCTAssert and related functions to verify your tests produce the correct results.
|
|
}
|
|
|
|
func testPerformanceExample() {
|
|
// This is an example of a performance test case.
|
|
self.measure {
|
|
// Put the code you want to measure the time of here.
|
|
}
|
|
}
|
|
|
|
}
|