SimpleDateTimeProvider 2024.4.1.81

dotnet add package SimpleDateTimeProvider --version 2024.4.1.81
NuGet\Install-Package SimpleDateTimeProvider -Version 2024.4.1.81
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SimpleDateTimeProvider" Version="2024.4.1.81" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SimpleDateTimeProvider --version 2024.4.1.81
#r "nuget: SimpleDateTimeProvider, 2024.4.1.81"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SimpleDateTimeProvider as a Cake Addin
#addin nuget:?package=SimpleDateTimeProvider&version=2024.4.1.81

// Install SimpleDateTimeProvider as a Cake Tool
#tool nuget:?package=SimpleDateTimeProvider&version=2024.4.1.81

SimpleDateTimeProvider

A simple abstraction over C#'s DateTime.Now, DateTime.Today and DateTime.UtcNow so you can control these values in your tests. No longer do you have to attempt shennanigans in your tests to handle when you need to use those values in your code.

Features

  • SystemDateTimeProvider - Abstraction over the top of System.DateTime.
  • MockDateTimeProvider - Provider used to mock DateTime values in test projects.

Setup

It's easy to get under way using the providers, simply inject the system provider under the IDateTimeProvider interface in your functional code. If you are using another library you'll know the syntax but follow the same formula.

_ = services.AddSingleton<IDateTimeProvider, SystemDateTimeProvider>();

Create your class and use that registered SystemDateTimeProvider that we just created via the IDateTimeProvider interface. Then use the provider to set the DateTime values in your class.

public class Service
{
    private readonly IDateTimeProvider dateTimeProvider;

    public Service(IDateTimeProvider dateTimeProvider)
    {
        this.dateTimeProvider = dateTimeProvider;
    }

    public string DateTimeNow()
    {
        return $"DateTime.Now is {this.dateTimeProvider.Now}";
    }
}

Testing

The whole purpose of this was to allow for testable code. So now that you have your class above, you can inject the MockDateTimeProvider in its place to control the DateTime values in your tests. It's as easy as the sample below.

[Fact]
public void Today_ShouldReturn_MockedToday()
{
    // Arrange
    var provider = new MockDateTimeProvider();
    var service = new Service(provider);
    var today = DateTime.Today;

    provider.Today = today;

    // Act
    var result = service.DateTimeToday();

    // Assert
    _ = result.ShouldBeOfType<string>();
    result.ShouldBe($"DateTime.Today is {today}");
}

Support

I'm sharing some of my work here and if it helps you, I'd love it if you'd consider supporting me at Buy Me A Coffee

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2024.4.1.81 419 4/1/2024
2024.3.1.80 1,007 3/1/2024
2024.2.1.79 950 2/1/2024
2024.1.1.78 1,332 1/1/2024
2023.12.15.77 273 12/15/2023
2023.12.15.76 84 12/15/2023
2023.12.15.75 86 12/15/2023
2023.12.14.71 99 12/14/2023
2022.11.13.46 19,644 11/13/2022
2022.10.30.45 574 10/30/2022
2022.10.23.44 394 10/23/2022
2022.10.16.43 461 10/16/2022
2022.10.9.42 378 10/9/2022
2022.10.2.41 433 10/2/2022
2022.9.18.40 929 9/18/2022
2022.9.4.39 400 9/4/2022
2022.8.28.38 405 8/28/2022
2022.8.21.37 661 8/21/2022
2022.8.14.36 404 8/14/2022
2022.8.7.35 439 8/7/2022
2022.7.24.34 960 7/24/2022
2022.7.10.33 1,310 7/10/2022
2022.6.19.32 1,278 6/19/2022
2022.6.5.31 462 6/5/2022
2022.5.15.30 760 5/15/2022
2022.5.1.29 1,434 5/1/2022
2022.4.17.28 582 4/17/2022
2022.4.3.27 824 4/3/2022
2022.3.6.26 512 3/6/2022
2022.2.27.25 395 2/27/2022
2022.2.20.24 520 2/20/2022
2022.2.13.23 430 2/13/2022
2022.2.10.22 430 2/10/2022
2022.2.6.20 430 2/6/2022
2022.2.5.19 419 2/5/2022
2022.1.23.18 796 1/23/2022
2022.1.19.17 423 1/19/2022
2022.1.19.15 414 1/19/2022
2022.1.19.14 423 1/19/2022
2022.1.9.13 249 1/9/2022
2021.11.29.12 885 11/29/2021
2021.11.27.10 252 11/27/2021
2021.11.26.9 1,620 11/26/2021
2021.11.23.8 259 11/23/2021
2021.11.22.4 272 11/22/2021
2021.11.22.3 283 11/22/2021
2021.11.22.2 290 11/22/2021