Skip to content

StringAssertions.NotStartWith Method

Definition

Asserts that the string does not start with the specified value.

public StringAssertionsChain NotStartWith(string expected, StringComparison comparison = StringComparison.System.StringComparison);

Parameters

Name Type Description
expected String The value the string should not start with.
comparison StringComparison The StringComparison to use. Defaults to Ordinal.

Returns

StringAssertionsChain

A StringAssertionsChain for chaining further assertions.