cs-codex-dist-tests/Tests/DistTestCore/Logs/TestLog.cs

22 lines
510 B
C#
Raw Normal View History

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