gitextract_q_moxppx/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CombineExpectations.podspec ├── LICENSE ├── Package.swift ├── README.md ├── Sources/ │ └── CombineExpectations/ │ ├── PublisherExpectation.swift │ ├── PublisherExpectations/ │ │ ├── AvailableElements.swift │ │ ├── Finished.swift │ │ ├── Inverted.swift │ │ ├── Map.swift │ │ ├── Next.swift │ │ ├── NextOne.swift │ │ ├── Prefix.swift │ │ └── Recording.swift │ ├── Recorder.swift │ └── RecordingError.swift └── Tests/ ├── CombineExpectationsTests/ │ ├── DocumentationTests.swift │ ├── FailureTestCase.swift │ ├── LateSubscriptionTest.swift │ ├── RecorderTests.swift │ ├── Support.swift │ ├── WackySubscriberTests.swift │ └── XCTestManifests.swift └── LinuxMain.swift