2
0
mirror of synced 2025-01-28 01:06:15 +00:00

21 lines
504 B
C#
Raw Normal View History

2023-09-20 10:51:47 +02:00
namespace DistTestCore.Logs
2023-04-12 13:53:55 +02:00
{
2023-09-12 11:25:04 +02:00
public class TestLog : BaseTestLog
2023-04-12 13:53:55 +02:00
{
2023-04-14 14:53:39 +02:00
private readonly string fullName;
2023-04-12 13:53:55 +02:00
public TestLog(string folder, string deployId, string name = "") : base(deployId)
2023-04-12 13:53:55 +02:00
{
var methodName = NameUtils.GetTestMethodName(name);
2023-04-14 14:53:39 +02:00
fullName = Path.Combine(folder, methodName);
2023-04-12 13:53:55 +02:00
Log($"*** Begin: {methodName}");
2023-04-12 13:53:55 +02:00
}
2023-06-28 15:11:20 +02:00
protected override string GetFullName()
2023-04-12 13:53:55 +02:00
{
2023-06-28 15:11:20 +02:00
return fullName;
2023-04-12 13:53:55 +02:00
}
}
}