Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 387 Bytes

README.md

File metadata and controls

9 lines (5 loc) · 387 Bytes

ShouldBeLike

Shouldly like tool for asserting likeness based on James Fosters' DeepEqual library.

Examples:

new MyObject().ShouldBeLike(new MyObject()) // passes

new MyObject() { Property = "actually something" }.ShouldBeLike(new MyObject() { Property = "Something expected" } ) // fails