24 lines
619 B
C#
24 lines
619 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
|
|
namespace Microsoft.AspNetCore.Authentication
|
|
{
|
|
public class TestClock : ISystemClock
|
|
{
|
|
public TestClock()
|
|
{
|
|
UtcNow = new DateTimeOffset(2013, 6, 11, 12, 34, 56, 789, TimeSpan.Zero);
|
|
}
|
|
|
|
public DateTimeOffset UtcNow { get; set; }
|
|
|
|
public void Add(TimeSpan timeSpan)
|
|
{
|
|
UtcNow = UtcNow + timeSpan;
|
|
}
|
|
}
|
|
}
|