Skip to content

Commit 4dc4982

Browse files
Rename Remote tests
1 parent d1ecd29 commit 4dc4982

File tree

6 files changed

+10
-15
lines changed

6 files changed

+10
-15
lines changed

Tests/web3swiftTests/localTests/LocalTests.xctestplan

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,11 @@
1414
"testTargets" : [
1515
{
1616
"skippedTests" : [
17-
"web3swiftENSTests",
18-
"web3swiftGanacheTests",
19-
"web3swiftRemoteParsingTests",
20-
"web3swiftST20AndSecurityTokenTests",
21-
"web3swiftWebsocketTests",
22-
"web3swift_ENS_Tests",
23-
"web3swift_ST20AndSecurityToken_Tests",
24-
"web3swift_infura_Tests",
25-
"web3swift_remoteParsing_Tests",
26-
"web3swift_websocket_Tests"
17+
"ENSTests",
18+
"GanacheTests",
19+
"RemoteParsingTests",
20+
"ST20AndSecurityTokenTests",
21+
"WebsocketTests",
2722
],
2823
"target" : {
2924
"containerPath" : "container:web3swift.xcodeproj",

Tests/web3swiftTests/remoteTests/web3swiftENSTests.swift renamed to Tests/web3swiftTests/remoteTests/ENSTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import XCTest
99
@testable import web3swift
1010

1111
// MARK: Works only with network connection
12-
class web3swiftENSTests: XCTestCase {
12+
class ENSTests: XCTestCase {
1313

1414
func testDomainNormalization() throws {
1515
let normalizedString = NameHash.normalizeDomainName("example.ens")

Tests/web3swiftTests/remoteTests/web3swiftGanacheTests.swift renamed to Tests/web3swiftTests/remoteTests/GanacheTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import XCTest
99
@testable import web3swift
1010

1111
// MARK: Works only with network connection
12-
class web3swiftInfuraTests: XCTestCase {
12+
class InfuraTests: XCTestCase {
1313

1414
func testGetBalance() throws {
1515
do {

Tests/web3swiftTests/remoteTests/web3swiftRemoteParsingTests.swift renamed to Tests/web3swiftTests/remoteTests/RemoteParsingTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import BigInt
1111
@testable import web3swift
1212

1313
// MARK: Works only with network connection
14-
class web3swiftRemoteParsingTests: XCTestCase {
14+
class RemoteParsingTests: XCTestCase {
1515

1616
func testEventParsing1usingABIv2() throws {
1717
print(1)

Tests/web3swiftTests/remoteTests/web3swiftST20AndSecurityTokenTests.swift renamed to Tests/web3swiftTests/remoteTests/ST20AndSecurityTokenTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import BigInt
1111
@testable import web3swift
1212

1313
// MARK: Works only with network connection
14-
class web3swiftST20AndSecurityTokenTests: XCTestCase {
14+
class ST20AndSecurityTokenTests: XCTestCase {
1515

1616
func testERC20TokenCreation() throws {
1717
let web3 = Web3.InfuraKovanWeb3(accessToken: Constants.infuraToken)

Tests/web3swiftTests/remoteTests/web3swiftWebsocketTests.swift renamed to Tests/web3swiftTests/remoteTests/WebsocketTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class SpyDelegate: Web3SocketDelegate {
5656
}
5757

5858
// MARK: Works only with network connection
59-
class web3swiftWebsocketTests: XCTestCase {
59+
class WebsocketTests: XCTestCase {
6060

6161
let spyDelegate = SpyDelegate()
6262
var socketProvider: InfuraWebsocketProvider?

0 commit comments

Comments
 (0)