20 lines
373 B
C#
20 lines
373 B
C#
|
namespace Logging
|
|||
|
{
|
|||
|
public abstract class BaseTestLog : BaseLog
|
|||
|
{
|
|||
|
private bool hasFailed;
|
|||
|
|
|||
|
public BaseTestLog(bool debug)
|
|||
|
: base(debug)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public void MarkAsFailed()
|
|||
|
{
|
|||
|
if (hasFailed) return;
|
|||
|
hasFailed = true;
|
|||
|
LogFile.ConcatToFilename("_FAILED");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|