public void Test_TwoArray_ItemsAreNotSame() { var a = new[] { 1, 2, 3 }; var b = new[] { 1, 4, 3 }; a.ShouldNotBe(b); }