21 lines
504 B
C#
21 lines
504 B
C#
namespace DistTestCore.Logs
|
|
{
|
|
public class TestLog : BaseTestLog
|
|
{
|
|
private readonly string fullName;
|
|
|
|
public TestLog(string folder, string deployId, string name = "") : base(deployId)
|
|
{
|
|
var methodName = NameUtils.GetTestMethodName(name);
|
|
fullName = Path.Combine(folder, methodName);
|
|
|
|
Log($"*** Begin: {methodName}");
|
|
}
|
|
|
|
protected override string GetFullName()
|
|
{
|
|
return fullName;
|
|
}
|
|
}
|
|
}
|