├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .swiftformat ├── .swiftlint.yml ├── .vscode ├── settings.json └── tasks.json ├── Brewfile ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── XCTestJSONObserver │ └── JSONObserver.swift ├── Tests └── JSONObserverTests │ ├── Equatable.swift │ └── PropertyTests.swift └── xcode_test.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/Brewfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/README.md -------------------------------------------------------------------------------- /Sources/XCTestJSONObserver/JSONObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/Sources/XCTestJSONObserver/JSONObserver.swift -------------------------------------------------------------------------------- /Tests/JSONObserverTests/Equatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/Tests/JSONObserverTests/Equatable.swift -------------------------------------------------------------------------------- /Tests/JSONObserverTests/PropertyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/Tests/JSONObserverTests/PropertyTests.swift -------------------------------------------------------------------------------- /xcode_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaxDesiatov/XCTestJSONObserver/HEAD/xcode_test.sh --------------------------------------------------------------------------------