Skip to content

Commit c61cd6e

Browse files
authored
Merge pull request #561 from tidepool-org/cameron/LOOP-4596-scenario-organization
[LOOP-4596] Scenario Organization
2 parents 5985446 + 09f6519 commit c61cd6e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

LoopTests/Managers/SupportManagerTests.swift

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,22 @@ class SupportManagerTests: XCTestCase {
3333
override init() { super.init() }
3434
required init?(rawState: RawStateValue) { super.init() }
3535
var rawState: RawStateValue = [:]
36+
37+
var loopNeedsReset: Bool = false
38+
var studyProductSelection: String? = nil
39+
func getScenarios(from scenarioURLs: [URL]) -> [LoopScenario] { [] }
40+
func resetLoop() {}
3641
}
3742
class AnotherMockSupport: Mixin, SupportUI {
3843
static var supportIdentifier: String { "SupportManagerTestsAnotherMockSupport" }
3944
override init() { super.init() }
4045
required init?(rawState: RawStateValue) { super.init() }
4146
var rawState: RawStateValue = [:]
47+
48+
var loopNeedsReset: Bool = false
49+
var studyProductSelection: String? = nil
50+
func getScenarios(from scenarioURLs: [URL]) -> [LoopScenario] { [] }
51+
func resetLoop() {}
4252
}
4353

4454
class MockAlertIssuer: AlertIssuer {

0 commit comments

Comments
 (0)