MoreAsserts.AssertNotContainsRegex Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AssertNotContainsRegex(String, String) |
Variant of |
AssertNotContainsRegex(String, String, String) |
Asserts that |
AssertNotContainsRegex(String, String)
Variant of #assertNotContainsRegex(String,String,String)
using a
generic message.
[Android.Runtime.Register("assertNotContainsRegex", "(Ljava/lang/String;Ljava/lang/String;)V", "")]
public static void AssertNotContainsRegex (string? expectedRegex, string? actual);
[<Android.Runtime.Register("assertNotContainsRegex", "(Ljava/lang/String;Ljava/lang/String;)V", "")>]
static member AssertNotContainsRegex : string * string -> unit
Parameters
- expectedRegex
- String
- actual
- String
- Attributes
Remarks
Variant of #assertNotContainsRegex(String,String,String)
using a generic message.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
AssertNotContainsRegex(String, String, String)
Asserts that expectedRegex
does not match any substring of
actual
, and fails with message
if it does.
[Android.Runtime.Register("assertNotContainsRegex", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "")]
public static void AssertNotContainsRegex (string? message, string? expectedRegex, string? actual);
[<Android.Runtime.Register("assertNotContainsRegex", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "")>]
static member AssertNotContainsRegex : string * string * string -> unit
Parameters
- message
- String
- expectedRegex
- String
- actual
- String
- Attributes
Remarks
Asserts that expectedRegex
does not match any substring of actual
, and fails with message
if it does. Note that you can also use this for a literal string, by wrapping your expected string in Pattern#quote
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.