mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-01-12 22:47:34 +08:00
22 lines
332 B
Swift
22 lines
332 B
Swift
//
|
|
// ListKitTestCase.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 5/13/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import XCTest
|
|
@testable import Freetime
|
|
|
|
class ListKitTestCase: XCTestCase {
|
|
|
|
let kit = ListTestKit()
|
|
|
|
override func setUp() {
|
|
super.setUp()
|
|
kit.setup()
|
|
}
|
|
|
|
}
|