TestStoreOf

A convenience type alias for referring to a test store of a given reducer’s domain.

TestStore.swift:852
typealias TestStoreOf<R> = TestStore<R.State, R.Action> where R : Reducer, R.State : Equatable

Instead of specifying two generics:

let testStore: TestStore<Feature.State, Feature.Action>

You can specify a single generic:

let testStore: TestStoreOf<Feature>