Skip to content

Commit

Permalink
Breakup test so travis doesn't stop the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouke authored Mar 8, 2017
1 parent e79ef47 commit f207a93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Tests/SRPTests/SRPTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ import SRP
import XCTest

class SRPTests: XCTestCase {
func testSuccess() {
func testSHA1() {
runTest(group: .N1024, algorithm: .sha1, username: "alice", password: "password123")
runTest(group: .N2048, algorithm: .sha1, username: "alice", password: "password123")
runTest(group: .N3072, algorithm: .sha1, username: "alice", password: "password123")
runTest(group: .N4096, algorithm: .sha1, username: "alice", password: "password123")
runTest(group: .N6144, algorithm: .sha1, username: "alice", password: "password123")
runTest(group: .N8192, algorithm: .sha1, username: "alice", password: "password123")
}

func testSHA256() {
runTest(group: .N1024, algorithm: .sha256, username: "alice", password: "password123")
runTest(group: .N2048, algorithm: .sha256, username: "alice", password: "password123")
runTest(group: .N3072, algorithm: .sha256, username: "alice", password: "password123")
Expand Down

0 comments on commit f207a93

Please sign in to comment.