onUnittestErrorMsg

A callback for unittest errors in D. The user-supplied unittest handler will be called if one has been supplied, otherwise the error will be written to stderr.

extern (C) nothrow
void
onUnittestErrorMsg
(
string file
,
size_t line
,
string msg
)

Parameters

file string

The name of the file that signaled this error.

line size_t

The line number on which this error occurred.

msg string

An error message supplied by the user.

Meta