testValue

The test value for the dependency key.

DependencyKey.swift:108
static var testValue: Value { get }

This value is automatically used when the associated dependency value is accessed from an XCTest run, as well as when the current context is set to test:

withDependencies {
  $0.context = .test
} operation: {
  // Dependencies accessed here default to their "test" value
}