Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

Commit

Permalink
Name convention
Browse files Browse the repository at this point in the history
  • Loading branch information
denisvieira-dev committed Jun 28, 2023
1 parent 3fb64e8 commit d9abfac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/Nox.Types.Tests/Types/Year/YearTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class YearTests
{
[Fact]
public void Nox_Year_Constructor_ReturnsSameValue()
public void Year_Constructor_ReturnsSameValue()
{
var testYear = (ushort)1;

Expand All @@ -15,7 +15,7 @@ public void Nox_Year_Constructor_ReturnsSameValue()
[Theory]
[InlineData((ushort)0)]
[InlineData((ushort)(19999))]
public void Nox_Year_Constructor_WithOutOfRangeYear_ThrowsValidationException(ushort value)
public void Year_Constructor_WithoutRangeYear_ThrowsValidationException(ushort value)
{
// Arrange & Act
var exception = Assert.Throws<TypeValidationException>(() => _ =
Expand All @@ -27,7 +27,7 @@ public void Nox_Year_Constructor_WithOutOfRangeYear_ThrowsValidationException(us
}

[Fact]
public void Nox_Year_Equality_Tests()
public void Year_Equal_Tests()
{
// Arrange
var year1 = Year.From(1);
Expand All @@ -39,7 +39,7 @@ public void Nox_Year_Equality_Tests()
}

[Fact]
public void Nox_Year_NotEqual_Tests()
public void Year_NotEqual_Tests()
{
// Arrange
var year1 = Year.From(1);
Expand All @@ -52,7 +52,7 @@ public void Nox_Year_NotEqual_Tests()


[Fact]
public void Nox_Year_ToString_ReturnsString()
public void Year_ToString_ReturnsString()
{
// Arrange
var year = Year.From(1);
Expand Down

0 comments on commit d9abfac

Please sign in to comment.