41 lines
893 B
Swift
41 lines
893 B
Swift
//
|
|
// FileHandle_Tests.swift
|
|
// SwiftShell
|
|
//
|
|
// Created by Kåre Morstøl on 19/08/14.
|
|
// Copyright (c) 2014 NotTooBad Software. All rights reserved.
|
|
//
|
|
|
|
import SwiftShell
|
|
import XCTest
|
|
|
|
extension XCTestCase {
|
|
|
|
func pathForTestResource (filename: String, type: String) -> String {
|
|
let path = NSBundle(forClass: self.dynamicType).pathForResource(filename, ofType: type)
|
|
assert(path != nil, "resource \(filename).\(type) not found")
|
|
|
|
return path!
|
|
}
|
|
}
|
|
|
|
class FileHandle_Tests: XCTestCase {
|
|
|
|
// waiting for error handling to be implemented
|
|
func notestOpenForReadingFileWhichDoesNotExist() {
|
|
let file = open("file which does not exist")
|
|
XCTFail("not implemented yet")
|
|
}
|
|
|
|
func testReadFileLineByLine() {
|
|
let shorttextpath = pathForTestResource("shorttext", type: "txt")
|
|
var contents = ""
|
|
|
|
for line in open(shorttextpath).lines() {
|
|
contents.write(line)
|
|
}
|
|
|
|
|
|
}
|
|
}
|