|
| 1 | +// Copyright 2020 ONIXLabs |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +using System; |
| 16 | +using Xunit; |
| 17 | + |
| 18 | +namespace OnixLabs.Core.UnitTests; |
| 19 | + |
| 20 | +public sealed class DateTimeExtensionTests |
| 21 | +{ |
| 22 | + [Theory(DisplayName = "ToDateOnly should produce the expected result")] |
| 23 | + [InlineData(1, 1, 1, 0, 0, 0)] |
| 24 | + [InlineData(1999, 12, 12, 12, 30, 31)] |
| 25 | + public void ToDateOnlyShouldProduceExpectedResult(int year, int month, int day, int hour, int minute, int second) |
| 26 | + { |
| 27 | + // When |
| 28 | + DateTime value = new(year, month, day, hour, minute, second); |
| 29 | + DateOnly expected = DateOnly.FromDateTime(value); |
| 30 | + DateOnly actual = value.ToDateOnly(); |
| 31 | + |
| 32 | + // Then |
| 33 | + Assert.Equal(expected, actual); |
| 34 | + } |
| 35 | + |
| 36 | + [Theory(DisplayName = "ToTimeOnly should produce the expected result")] |
| 37 | + [InlineData(1, 1, 1, 0, 0, 0)] |
| 38 | + [InlineData(1999, 12, 12, 12, 30, 31)] |
| 39 | + public void ToTimeOnlyShouldProduceExpectedResult(int year, int month, int day, int hour, int minute, int second) |
| 40 | + { |
| 41 | + // When |
| 42 | + DateTime value = new(year, month, day, hour, minute, second); |
| 43 | + TimeOnly expected = TimeOnly.FromDateTime(value); |
| 44 | + TimeOnly actual = value.ToTimeOnly(); |
| 45 | + |
| 46 | + // Then |
| 47 | + Assert.Equal(expected, actual); |
| 48 | + } |
| 49 | +} |
0 commit comments