Why CustomDump has dependency on xctest-dynamic-overlay #90
-
swift-custom-dump/Package.swift Line 19 in e1a5818
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@InderKumarRathore One of Custom Dump's main tools is It's a very lightweight interface to XCTest, though, so it should compile quite fast and not be a burdensome dependency to bring in. Do you have any concerns? |
Beta Was this translation helpful? Give feedback.
-
Also, I'm going to convert this to a discussion since we use issues for bug tracking and this is more of a Q&A. |
Beta Was this translation helpful? Give feedback.
@InderKumarRathore One of Custom Dump's main tools is
XCTAssertNoDifference
, which provides a nice, human-readable version ofXCTAssertEqual
. It requires XCTest Dynamic Overlay to define test tools inside a library target. You can learn more about the library here: https://github.com/pointfreeco/xctest-dynamic-overlayIt's a very lightweight interface to XCTest, though, so it should compile quite fast and not be a burdensome dependency to bring in. Do you have any concerns?