Skip to content
Maarten Groeneweg edited this page Mar 30, 2015 · 1 revision

title: I.Assert.False link: 'False'

Assert that an anonymous function should return false. Use with I.Find to fail tests properly if conditions are not met.

// Element is not a select box
var element = I.Find("input");
I.Assert.False(() => element().IsSelect);
// TODO - Visual Basic Code Sample

Clone this wiki locally