12 lines
203 B
C#
12 lines
203 B
C#
|
using NUnit.Framework;
|
|||
|
|
|||
|
namespace Bunny.Test.Until.Test;
|
|||
|
|
|||
|
public class Test2
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void Test1()
|
|||
|
{
|
|||
|
Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
|
|||
|
}
|
|||
|
}
|