Assert.Inconclusive 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
Inconclusive() |
Throws an AssertInconclusiveException. |
Inconclusive(String) |
Throws an AssertInconclusiveException. |
Inconclusive(String, Object[]) |
Throws an AssertInconclusiveException. |
Inconclusive()
Throws an AssertInconclusiveException.
public:
static void Inconclusive();
public static void Inconclusive ();
static member Inconclusive : unit -> unit
Public Shared Sub Inconclusive ()
Exceptions
Always thrown.
Applies to
Inconclusive(String)
Throws an AssertInconclusiveException.
public:
static void Inconclusive(System::String ^ message);
public static void Inconclusive (string message);
static member Inconclusive : string -> unit
Public Shared Sub Inconclusive (message As String)
Parameters
- message
- String
The message to include in the exception. The message is shown in test results.
Exceptions
Always thrown.
Applies to
Inconclusive(String, Object[])
Throws an AssertInconclusiveException.
public:
static void Inconclusive(System::String ^ message, ... cli::array <System::Object ^> ^ parameters);
public static void Inconclusive (string message, params object[] parameters);
static member Inconclusive : string * obj[] -> unit
Public Shared Sub Inconclusive (message As String, ParamArray parameters As Object())
Parameters
- message
- String
The message to include in the exception. The message is shown in test results.
- parameters
- Object[]
An array of parameters to use when formatting message
.
Exceptions
Always thrown.