Skip to content

Commit 03568e1

Browse files
Added ToDateOnly and ToTimeOnly extension methods. (#87)
1 parent ef5a401 commit 03568e1

7 files changed

+95
-7
lines changed

Directory.Build.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<NeutralLanguage>en</NeutralLanguage>
99
<Copyright>Copyright © ONIXLabs 2020</Copyright>
1010
<RepositoryUrl>https://github.com/onix-labs/onixlabs-dotnet</RepositoryUrl>
11-
<Version>10.0.0</Version>
12-
<PackageVersion>10.0.0</PackageVersion>
13-
<AssemblyVersion>10.0.0</AssemblyVersion>
11+
<Version>10.1.0</Version>
12+
<PackageVersion>10.1.0</PackageVersion>
13+
<AssemblyVersion>10.1.0</AssemblyVersion>
1414
</PropertyGroup>
1515
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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+
}

OnixLabs.Core/Extensions.DateTime.cs

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Copyright 2020-2024 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 System.ComponentModel;
17+
18+
namespace OnixLabs.Core;
19+
20+
/// <summary>
21+
/// Provides extension methods for <see cref="DateTime"/> instances.
22+
/// </summary>
23+
[EditorBrowsable(EditorBrowsableState.Never)]
24+
public static class DateTimeExtensions
25+
{
26+
/// <summary>
27+
/// Obtains a <see cref="DateOnly"/> instance from the current <see cref="DateTime"/> instance.
28+
/// </summary>
29+
/// <param name="value">The <see cref="DateTime"/> instance from which to obtain a <see cref="DateOnly"/> instance.</param>
30+
/// <returns>Returns the <see cref="DateOnly"/> instance obtained from the current <see cref="DateTime"/> instance.</returns>
31+
public static DateOnly ToDateOnly(this DateTime value) => DateOnly.FromDateTime(value);
32+
33+
/// <summary>
34+
/// Obtains a <see cref="TimeOnly"/> instance from the current <see cref="TimeOnly"/> instance.
35+
/// </summary>
36+
/// <param name="value">The <see cref="DateTime"/> instance from which to obtain a <see cref="TimeOnly"/> instance.</param>
37+
/// <returns>Returns the <see cref="TimeOnly"/> instance obtained from the current <see cref="DateTime"/> instance.</returns>
38+
public static TimeOnly ToTimeOnly(this DateTime value) => TimeOnly.FromDateTime(value);
39+
}

OnixLabs.Core/Extensions.Object.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
namespace OnixLabs.Core;
2626

2727
/// <summary>
28-
/// Provides extension methods for objects.
28+
/// Provides extension methods for <see cref="object"/> instances.
2929
/// </summary>
3030
[EditorBrowsable(EditorBrowsableState.Never)]
3131
public static class ObjectExtensions

OnixLabs.Core/Extensions.Random.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
namespace OnixLabs.Core;
2020

2121
/// <summary>
22-
/// Provides extension methods for objects.
22+
/// Provides extension methods for <see cref="Random"/> instances.
2323
/// </summary>
2424
[EditorBrowsable(EditorBrowsableState.Never)]
2525
public static class RandomExtensions

OnixLabs.Core/Extensions.ReadOnlySequence.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
namespace OnixLabs.Core;
1919

2020
/// <summary>
21-
/// Provides extension methods for read-only sequences.
21+
/// Provides extension methods for <see cref="ReadOnlySequence{T}"/> instances.
2222
/// </summary>
2323
[EditorBrowsable(EditorBrowsableState.Never)]
2424
public static class ReadOnlySequenceExtensions

OnixLabs.Core/Extensions.String.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
namespace OnixLabs.Core;
2323

2424
/// <summary>
25-
/// Provides extension methods for strings.
25+
/// Provides extension methods for <see cref="string"/> instances.
2626
/// </summary>
2727
[EditorBrowsable(EditorBrowsableState.Never)]
2828
public static class StringExtensions

0 commit comments

Comments
 (0)