Skip to content

Commit

Permalink
Merge pull request #1 from swift-libp2p/tests
Browse files Browse the repository at this point in the history
Added tests to allTests
  • Loading branch information
btoms20 authored Feb 9, 2024
2 parents 96f828c + 4df838d commit 45f3cf2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Tests/MultibaseTests/MultibaseTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -923,6 +923,37 @@ final class MultibaseTests: XCTestCase {
// }

static var allTests = [
("testBinary", testBinary),
("testOctal", testOctal),
("testDecimal", testDecimal),
("testHex", testHex),
("testHexUpper", testHexUpper),
("testBase32", testBase32),
("testBase32Upper", testBase32Upper),
("testBase32Pad", testBase32Pad),
("testBase32PadUpper", testBase32PadUpper),
("testBase32Hex", testBase32Hex),
("testBase32HexUpper", testBase32HexUpper),
("testBase32HexPad", testBase32HexPad),
("testBase32HexPadUpper", testBase32HexPadUpper),
("testBase32z", testBase32z),
("testBase36", testBase36),
("testBase36Upper", testBase36Upper),
("testBTCBase58", testBTCBase58),
("testFlickrBase58", testFlickrBase58),
("testBase64", testBase64),
("testBase64Pad", testBase64Pad),
("testBase64Url", testBase64Url),
("testBase64UrlPad", testBase64UrlPad),
("testBase64CrazyStrings", testBase64CrazyStrings),
("testBase64PadCrazyStrings", testBase64PadCrazyStrings),
("testBase64URLCrazyStrings", testBase64URLCrazyStrings),
("testBase64URLPadCrazyStrings", testBase64URLPadCrazyStrings),
("testBase32CrazyStrings", testBase32CrazyStrings),
("testUTF8", testUTF8),
("testBasicEncoding", testBasicEncoding),
("testCaseInsensitivity", testCaseInsensitivity),
("testLeadingZero", testLeadingZero),
("testTwoLeadingZero", testTwoLeadingZero),
]
}

0 comments on commit 45f3cf2

Please sign in to comment.