16 lines
289 B
C#
16 lines
289 B
C#
using System;
|
|
using NUnit.Framework;
|
|
|
|
namespace Unity.RenderStreaming.RuntimeTest
|
|
{
|
|
|
|
public class DataTimeExtensionTest
|
|
{
|
|
[Test]
|
|
public void ToJsMilliseconds()
|
|
{
|
|
Assert.That(DateTime.Now.ToJsMilliseconds(), Is.GreaterThan(0));
|
|
}
|
|
}
|
|
}
|