`AsyncMutableStoreTests` Stub
This commit is contained in:
parent
dbf6cd9d1a
commit
fbe154665f
|
@ -0,0 +1,28 @@
|
|||
//
|
||||
// AsyncMutableStoreTests.swift
|
||||
// YMFFTests
|
||||
//
|
||||
// Created by Yakov Manshin on 9/30/22.
|
||||
// Copyright © 2022 Yakov Manshin. See the LICENSE file for license info.
|
||||
//
|
||||
|
||||
@testable import YMFF
|
||||
|
||||
import XCTest
|
||||
#if !COCOAPODS
|
||||
import YMFFProtocols
|
||||
#endif
|
||||
|
||||
final class AsyncMutableStoreTests: XCTestCase {
|
||||
|
||||
private var asyncMutableStore: AsyncMutableFeatureFlagStoreProtocol!
|
||||
private var resolver: FeatureFlagResolverProtocol!
|
||||
|
||||
override func setUp() async throws {
|
||||
try await super.setUp()
|
||||
|
||||
asyncMutableStore = AsyncMutableFeatureFlagStoreMock(store: .init())
|
||||
resolver = FeatureFlagResolver(stores: [])
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue