Assert.Inconclusive Method
Definition
Overloads
Inconclusive(String) |
Throws an InconclusiveException with the message that is passed in. This causes the test to be reported as inconclusive. |
Inconclusive(String, Object[]) |
Throws an InconclusiveException with the message and arguments that are passed in. This causes the test to be reported as inconclusive. |
Inconclusive() |
Throws an InconclusiveException. This causes the test to be reported as Inconclusive. |
Inconclusive(String)
Throws an InconclusiveException with the message that is passed in. This causes the test to be reported as inconclusive.
public static void Inconclusive (string message);
static member Inconclusive : string -> unit
Parameters
- message
- String
The message to initialize the InconclusiveException with.
Applies to
Inconclusive(String, Object[])
Throws an InconclusiveException with the message and arguments that are passed in. This causes the test to be reported as inconclusive.
public static void Inconclusive (string message, params object[] args);
static member Inconclusive : string * obj[] -> unit
Parameters
- message
- String
The message to initialize the InconclusiveException with.
- args
- Object[]
Arguments to be used in formatting the message
Applies to
Inconclusive()
Throws an InconclusiveException. This causes the test to be reported as Inconclusive.
public static void Inconclusive ();
static member Inconclusive : unit -> unit