2020-03-09 19:47:39 +00:00
|
|
|
using System;
|
2018-04-01 17:58:26 +01:00
|
|
|
using NUnit.Framework;
|
|
|
|
|
2018-08-24 13:10:13 +01:00
|
|
|
namespace SpotifyAPI.Web.Tests
|
2018-04-01 17:58:26 +01:00
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
[TestFixture]
|
|
|
|
public class UtilTest
|
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void TimestampShouldBeNoFloatingPoint()
|
2018-04-01 17:58:26 +01:00
|
|
|
{
|
2020-03-09 19:47:39 +00:00
|
|
|
string timestamp = DateTime.Now.ToUnixTimeMillisecondsPoly().ToString();
|
2018-04-01 17:58:26 +01:00
|
|
|
|
2020-03-09 19:47:39 +00:00
|
|
|
StringAssert.DoesNotContain(".", timestamp);
|
|
|
|
StringAssert.DoesNotContain(",", timestamp);
|
2018-04-01 17:58:26 +01:00
|
|
|
}
|
2020-03-09 19:47:39 +00:00
|
|
|
}
|
2018-04-01 17:58:26 +01:00
|
|
|
}
|