├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── XCAssertNoLeakExample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ └── Package.resolved ├── XCAssertNoLeakExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── XCAssertNoLeakExampleTests │ ├── Info.plist │ └── XCAssertNoLeakExampleTests.swift ├── LICENSE ├── Package.swift ├── README.md ├── Readme └── screenshot.png ├── Sources └── XCTAssertNoLeak │ ├── Core │ ├── Assert.swift │ ├── AssertNoLeakContext.swift │ ├── CustomTraversable.swift │ ├── Node.swift │ └── OldSwiftSupport.swift │ └── Front │ └── XCTAssertNoLeak.swift ├── Tests ├── LinuxMain.swift └── XCTAssertNoLeakTests │ ├── NodeTests.swift │ ├── OldSwiftSupport.swift │ ├── XCTAssertNoLeakTests.swift │ └── XCTestManifests.swift ├── XCTAssertNoLeak.podspec └── XCTAssertNoLeak.xcodeproj ├── XCTAssertNoLeakTests_Info.plist ├── XCTAssertNoLeak_Info.plist ├── project.pbxproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xcshareddata └── xcschemes └── XCTAssertNoLeak.xcscheme /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | xcuserdata 5 | .swiftpm -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample/Info.plist -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExample/ViewController.swift -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/XCAssertNoLeakExampleTests/XCAssertNoLeakExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Example/XCAssertNoLeakExampleTests/XCAssertNoLeakExampleTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/README.md -------------------------------------------------------------------------------- /Readme/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Readme/screenshot.png -------------------------------------------------------------------------------- /Sources/XCTAssertNoLeak/Core/Assert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Sources/XCTAssertNoLeak/Core/Assert.swift -------------------------------------------------------------------------------- /Sources/XCTAssertNoLeak/Core/AssertNoLeakContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Sources/XCTAssertNoLeak/Core/AssertNoLeakContext.swift -------------------------------------------------------------------------------- /Sources/XCTAssertNoLeak/Core/CustomTraversable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Sources/XCTAssertNoLeak/Core/CustomTraversable.swift -------------------------------------------------------------------------------- /Sources/XCTAssertNoLeak/Core/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Sources/XCTAssertNoLeak/Core/Node.swift -------------------------------------------------------------------------------- /Sources/XCTAssertNoLeak/Core/OldSwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Sources/XCTAssertNoLeak/Core/OldSwiftSupport.swift -------------------------------------------------------------------------------- /Sources/XCTAssertNoLeak/Front/XCTAssertNoLeak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Sources/XCTAssertNoLeak/Front/XCTAssertNoLeak.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/XCTAssertNoLeakTests/NodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Tests/XCTAssertNoLeakTests/NodeTests.swift -------------------------------------------------------------------------------- /Tests/XCTAssertNoLeakTests/OldSwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Tests/XCTAssertNoLeakTests/OldSwiftSupport.swift -------------------------------------------------------------------------------- /Tests/XCTAssertNoLeakTests/XCTAssertNoLeakTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Tests/XCTAssertNoLeakTests/XCTAssertNoLeakTests.swift -------------------------------------------------------------------------------- /Tests/XCTAssertNoLeakTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/Tests/XCTAssertNoLeakTests/XCTestManifests.swift -------------------------------------------------------------------------------- /XCTAssertNoLeak.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/XCTAssertNoLeak.podspec -------------------------------------------------------------------------------- /XCTAssertNoLeak.xcodeproj/XCTAssertNoLeakTests_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/XCTAssertNoLeak.xcodeproj/XCTAssertNoLeakTests_Info.plist -------------------------------------------------------------------------------- /XCTAssertNoLeak.xcodeproj/XCTAssertNoLeak_Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/XCTAssertNoLeak.xcodeproj/XCTAssertNoLeak_Info.plist -------------------------------------------------------------------------------- /XCTAssertNoLeak.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/XCTAssertNoLeak.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XCTAssertNoLeak.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/XCTAssertNoLeak.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XCTAssertNoLeak.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/XCTAssertNoLeak.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /XCTAssertNoLeak.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/XCTAssertNoLeak.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /XCTAssertNoLeak.xcodeproj/xcshareddata/xcschemes/XCTAssertNoLeak.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarunon/XCTAssertNoLeak/HEAD/XCTAssertNoLeak.xcodeproj/xcshareddata/xcschemes/XCTAssertNoLeak.xcscheme --------------------------------------------------------------------------------