`AsyncMutableStoreTests` Stub

This commit is contained in:
Yakov Manshin 2022-09-29 22:18:04 +00:00
parent dbf6cd9d1a
commit fbe154665f
No known key found for this signature in database
GPG Key ID: DA3328AA3609559B
1 changed files with 28 additions and 0 deletions

View File

@ -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: [])
}
}