InterviewSolution
Saved Bookmarks
| 1. |
Difference Between Assert.isequal() And Assert.aresame()? |
|
Answer» Assert.IsEqual() REFERS to CONTROL VALUE. Assert.AreSame() refers to REFERENCE of the control. Assert.IsEqual() refers to control value. Assert.AreSame() refers to reference of the control. |
|