Skip to content

Commit 41ad210

Browse files
Renamed to SettingsMigrationTests
1 parent 5c8589c commit 41ad210

7 files changed

+16
-11
lines changed

ios/MullvadVPN.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@
620620
8590896C2B61763B003AF5F5 /* LoggedInWithoutTimeUITestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 859089682B61763B003AF5F5 /* LoggedInWithoutTimeUITestCase.swift */; };
621621
8590896F2B61763B003AF5F5 /* LoggedOutUITestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8590896B2B61763B003AF5F5 /* LoggedOutUITestCase.swift */; };
622622
85C7A2E92B89024B00035D5A /* SettingsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85C7A2E82B89024B00035D5A /* SettingsTests.swift */; };
623-
85D039982BA4711800940E7F /* MigrationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85D039972BA4711800940E7F /* MigrationTests.swift */; };
623+
85D039982BA4711800940E7F /* SettingsMigrationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85D039972BA4711800940E7F /* SettingsMigrationTests.swift */; };
624624
85D2B0B12B6BD32400DF9DA7 /* BaseUITestCase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8590896A2B61763B003AF5F5 /* BaseUITestCase.swift */; };
625625
85E3BDE52B70E18C00FA71FD /* Networking.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85E3BDE42B70E18C00FA71FD /* Networking.swift */; };
626626
A900E9B82ACC5C2B00C95F67 /* AccountsProxy+Stubs.swift in Sources */ = {isa = PBXBuildFile; fileRef = A900E9B72ACC5C2B00C95F67 /* AccountsProxy+Stubs.swift */; };
@@ -1855,7 +1855,7 @@
18551855
8590896A2B61763B003AF5F5 /* BaseUITestCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaseUITestCase.swift; sourceTree = "<group>"; };
18561856
8590896B2B61763B003AF5F5 /* LoggedOutUITestCase.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LoggedOutUITestCase.swift; sourceTree = "<group>"; };
18571857
85C7A2E82B89024B00035D5A /* SettingsTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsTests.swift; sourceTree = "<group>"; };
1858-
85D039972BA4711800940E7F /* MigrationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MigrationTests.swift; sourceTree = "<group>"; };
1858+
85D039972BA4711800940E7F /* SettingsMigrationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsMigrationTests.swift; sourceTree = "<group>"; };
18591859
85E3BDE42B70E18C00FA71FD /* Networking.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Networking.swift; sourceTree = "<group>"; };
18601860
A900E9B72ACC5C2B00C95F67 /* AccountsProxy+Stubs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AccountsProxy+Stubs.swift"; sourceTree = "<group>"; };
18611861
A900E9B92ACC5D0600C95F67 /* RESTRequestExecutor+Stubs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "RESTRequestExecutor+Stubs.swift"; sourceTree = "<group>"; };
@@ -3538,7 +3538,7 @@
35383538
8518F6392B601910009EB113 /* Test base classes */,
35393539
85557B152B5ABBBE00795FE1 /* XCUIElementQuery+Extensions.swift */,
35403540
85C7A2E82B89024B00035D5A /* SettingsTests.swift */,
3541-
85D039972BA4711800940E7F /* MigrationTests.swift */,
3541+
85D039972BA4711800940E7F /* SettingsMigrationTests.swift */,
35423542
);
35433543
path = MullvadVPNUITests;
35443544
sourceTree = "<group>";
@@ -5509,7 +5509,7 @@
55095509
85D2B0B12B6BD32400DF9DA7 /* BaseUITestCase.swift in Sources */,
55105510
8529693C2B4F0257007EAD4C /* Alert.swift in Sources */,
55115511
850201DD2B503D8C00EF8C96 /* SelectLocationPage.swift in Sources */,
5512-
85D039982BA4711800940E7F /* MigrationTests.swift in Sources */,
5512+
85D039982BA4711800940E7F /* SettingsMigrationTests.swift in Sources */,
55135513
850201DB2B503D7700EF8C96 /* RelayTests.swift in Sources */,
55145514
85557B142B5983CF00795FE1 /* MullvadAPIWrapper.swift in Sources */,
55155515
852969362B4E9724007EAD4C /* AccessbilityIdentifier.swift in Sources */,

ios/MullvadVPNUITests/MigrationTests.swift ios/MullvadVPNUITests/SettingsMigrationTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// MigrationTests.swift
2+
// SettingsMigrationTests.swift
33
// MullvadVPNUITests
44
//
55
// Created by Niklas Berglund on 2024-03-15.
@@ -9,7 +9,7 @@
99
import Foundation
1010
import XCTest
1111

12-
class MigrationTests: BaseUITestCase {
12+
class SettingsMigrationTests: BaseUITestCase {
1313
let customDNSServerIPAddress = "123.123.123.123"
1414
let wireGuardPort = "4001"
1515

ios/TestPlans/MullvadVPNUITestsAll.xctestplan

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"LoggedInWithTimeUITestCase",
2323
"LoggedInWithoutTimeUITestCase",
2424
"LoggedOutUITestCase",
25-
"MigrationTests"
25+
"MigrationTests",
26+
"SettingsMigrationTests"
2627
],
2728
"target" : {
2829
"containerPath" : "container:MullvadVPN.xcodeproj",

ios/TestPlans/MullvadVPNUITestsChangeDNSSettings.xctestplan

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"testTargets" : [
1515
{
1616
"selectedTests" : [
17-
"MigrationTests\/testChangeCustomDNSSettings()"
17+
"MigrationTests\/testChangeCustomDNSSettings()",
18+
"SettingsMigrationTests\/testChangeCustomDNSSettings()"
1819
],
1920
"target" : {
2021
"containerPath" : "container:MullvadVPN.xcodeproj",

ios/TestPlans/MullvadVPNUITestsChangeSettings.xctestplan

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"testTargets" : [
1515
{
1616
"selectedTests" : [
17-
"MigrationTests\/testChangeSettings()"
17+
"MigrationTests\/testChangeSettings()",
18+
"SettingsMigrationTests\/testChangeSettings()"
1819
],
1920
"target" : {
2021
"containerPath" : "container:MullvadVPN.xcodeproj",

ios/TestPlans/MullvadVPNUITestsVerifyDNSSettingsChanged.xctestplan

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"testTargets" : [
1515
{
1616
"selectedTests" : [
17-
"MigrationTests\/testVerifyCustomDNSSettingsStillChanged()"
17+
"MigrationTests\/testVerifyCustomDNSSettingsStillChanged()",
18+
"SettingsMigrationTests\/testVerifyCustomDNSSettingsStillChanged()"
1819
],
1920
"target" : {
2021
"containerPath" : "container:MullvadVPN.xcodeproj",

ios/TestPlans/MullvadVPNUITestsVerifySettingsChanged.xctestplan

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"testTargets" : [
1515
{
1616
"selectedTests" : [
17-
"MigrationTests\/testVerifySettingsStillChanged()"
17+
"MigrationTests\/testVerifySettingsStillChanged()",
18+
"SettingsMigrationTests\/testVerifySettingsStillChanged()"
1819
],
1920
"target" : {
2021
"containerPath" : "container:MullvadVPN.xcodeproj",

0 commit comments

Comments
 (0)