NUnit - please, how is this Assert statement true
Assert.AreSame(int.Parse("1"),int.Parse("1"),"this test should fail").
How on should this assert statement fail?
I figured they are thesame, so should pass. Right?
Assert.IsTrue( bool condition );
Assert.IsTrue( bool condition, string message );
Assert.IsTrue( bool condition, string message, object[] parms );
Assert.True( bool condition );
Assert.True( bool condition, string message );
Assert.True( bool condition, string message, object[] parms );