20 lines
369 B
Swift
20 lines
369 B
Swift
//
|
|
// LinuxMain.swift
|
|
// CSV
|
|
//
|
|
// Created by Yasuhiro Hatta on 2016/06/11.
|
|
//
|
|
//
|
|
|
|
import XCTest
|
|
@testable import CSVTests
|
|
|
|
XCTMain([
|
|
testCase(CSVTests.allTests),
|
|
testCase(CSVWriterTests.allTests),
|
|
testCase(LineBreakTests.allTests),
|
|
testCase(ReadmeTests.allTests),
|
|
testCase(TrimFieldsTests.allTests),
|
|
testCase(UnicodeTests.allTests)
|
|
])
|