SimpleDateTimeProvider 2022.11.13.46

There is a newer version of this package available.
See the version list below for details.
dotnet add package SimpleDateTimeProvider --version 2022.11.13.46
                    
NuGet\Install-Package SimpleDateTimeProvider -Version 2022.11.13.46
                    
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="2022.11.13.46" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SimpleDateTimeProvider" Version="2022.11.13.46" />
                    
Directory.Packages.props
<PackageReference Include="SimpleDateTimeProvider" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SimpleDateTimeProvider --version 2022.11.13.46
                    
#r "nuget: SimpleDateTimeProvider, 2022.11.13.46"
                    
#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.
#:package SimpleDateTimeProvider@2022.11.13.46
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SimpleDateTimeProvider&version=2022.11.13.46
                    
Install as a Cake Addin
#tool nuget:?package=SimpleDateTimeProvider&version=2022.11.13.46
                    
Install as a Cake Tool

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 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.12.1.90 9,318 12/1/2024
2024.11.1.89 1,276 11/1/2024
2024.10.1.88 2,001 10/1/2024
2024.9.1.87 1,443 9/1/2024
2024.7.26.86 2,260 7/26/2024
2024.7.1.84 1,840 7/1/2024
2024.6.1.83 2,445 6/1/2024
2024.5.1.82 2,054 5/1/2024
2024.4.1.81 954 4/1/2024
2024.3.1.80 1,448 3/1/2024
2024.2.1.79 1,113 2/1/2024
2024.1.1.78 3,347 1/1/2024
2023.12.15.77 373 12/15/2023
2023.12.15.76 170 12/15/2023
2023.12.15.75 183 12/15/2023
2023.12.14.71 183 12/14/2023
2022.11.13.46 32,775 11/13/2022
2022.10.30.45 683 10/30/2022
2022.10.23.44 492 10/23/2022
2022.10.16.43 569 10/16/2022
2022.10.9.42 483 10/9/2022
2022.10.2.41 559 10/2/2022
2022.9.18.40 1,063 9/18/2022
2022.9.4.39 505 9/4/2022
2022.8.28.38 505 8/28/2022
2022.8.21.37 889 8/21/2022
2022.8.14.36 501 8/14/2022
2022.8.7.35 546 8/7/2022
2022.7.24.34 1,235 7/24/2022
2022.7.10.33 1,616 7/10/2022
2022.6.19.32 1,709 6/19/2022
2022.6.5.31 569 6/5/2022
2022.5.15.30 875 5/15/2022
2022.5.1.29 2,185 5/1/2022
2022.4.17.28 689 4/17/2022
2022.4.3.27 951 4/3/2022
2022.3.6.26 627 3/6/2022
2022.2.27.25 512 2/27/2022
2022.2.20.24 640 2/20/2022
2022.2.13.23 552 2/13/2022
2022.2.10.22 551 2/10/2022
2022.2.6.20 548 2/6/2022
2022.2.5.19 551 2/5/2022
2022.1.23.18 922 1/23/2022
2022.1.19.17 537 1/19/2022
2022.1.19.15 536 1/19/2022
2022.1.19.14 547 1/19/2022
2022.1.9.13 369 1/9/2022
2021.11.29.12 1,018 11/29/2021
2021.11.27.10 369 11/27/2021
2021.11.26.9 1,745 11/26/2021
2021.11.23.8 380 11/23/2021
2021.11.22.4 395 11/22/2021
2021.11.22.3 411 11/22/2021
2021.11.22.2 622 11/22/2021