Skip to content

Commit

Permalink
Extend test
Browse files Browse the repository at this point in the history
  • Loading branch information
skrysmanski committed Mar 22, 2024
1 parent ed933b4 commit 2523eae
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/AppMotor.Core.Tests/Tests/Utils/DateTimeUtcTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
using System.Globalization;
using System.Text.Json;

using AppMotor.Core.Extensions;
using AppMotor.Core.Utils;
using AppMotor.TestCore;
using AppMotor.TestCore.Shouldly;
Expand Down Expand Up @@ -278,6 +279,7 @@ public void Test_ToString()
dateTimeUtc.ToString().ShouldBe(now.ToString());
dateTimeUtc.ToString(null).ShouldBe(now.ToString((string?)null));
dateTimeUtc.ToString(null, null).ShouldBe(now.ToString(null, null));
dateTimeUtc.ToString("o").ShouldBe(now.ToStringIC("yyyy-MM-ddTHH:mm:ss.fffffffZ"));
}

[Fact]
Expand Down

0 comments on commit 2523eae

Please sign in to comment.