Skip to content

Commit

Permalink
Merge pull request #103 from Shohei-Yamamoto/feature/replaceTestMetho…
Browse files Browse the repository at this point in the history
…dsNames

Update test methods name
  • Loading branch information
uhooi authored Oct 3, 2020
2 parents 4e011bc + 83815cb commit f86d3cc
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ final class MonsterDetailInteractorTests: XCTestCase {

// MARK: TestCase Life-Cycle Methods

override func setUp() {
override func setUpWithError() throws {
reset()
}

override func tearDown() {
override func tearDownWithError() throws {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ final class MonsterDetailPresenterTests: XCTestCase {

// MARK: TestCase Life-Cycle Methods

override func setUp() {
override func setUpWithError() throws {
reset()
}

override func tearDown() {
override func tearDownWithError() throws {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ final class MonsterListInteractorTests: XCTestCase {

// MARK: TestCase Life-Cycle Methods

override func setUp() {
override func setUpWithError() throws {
reset()
}

override func tearDown() {
override func tearDownWithError() throws {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ final class MonsterListPresenterTests: XCTestCase {

// MARK: TestCase Life-Cycle Methods

override func setUp() {
override func setUpWithError() throws {
reset()
}

override func tearDown() {
override func tearDownWithError() throws {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ final class UserDefaultsClientTests: XCTestCase {

// MARK: TestCase Life-Cycle Methods

override func setUp() {
override func setUpWithError() throws {
reset()
}

override func tearDown() {
override func tearDownWithError() throws {
}

// MARK: - Test Methods
Expand Down
4 changes: 2 additions & 2 deletions UhooiPicBookUITests/TestCases/UhooiPicBookUITests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ final class UhooiPicBookUITests: XCTestCase {

// MARK: TestCase Life-Cycle Methods

override func setUp() {
override func setUpWithError() throws {
// Put setup code here. This method is called before the invocation of each test method in the class.

// In UI tests it is usually best to stop immediately when a failure occurs.
Expand All @@ -21,7 +21,7 @@ final class UhooiPicBookUITests: XCTestCase {
// In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
}

override func tearDown() {
override func tearDownWithError() throws {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

Expand Down

0 comments on commit f86d3cc

Please sign in to comment.