Skip to content

Commit 2058d47

Browse files
committed
feat: general improvements and minor bugs
1 parent a234a97 commit 2058d47

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/WebExpress.WebIndex.Test/Data/UnitTestIndexItem.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace WebExpress.WebIndex.Test.Data
22
{
33
/// <summary>
4-
/// Provides unit tests for deterministic identifier behavior of <see cref="IndexItem"/>.
4+
/// Provides unit tests for deterministic identifier behavior of IndexItem.
55
/// </summary>
66
public class UnitTestIndexItem
77
{
@@ -10,7 +10,7 @@ public class UnitTestIndexItem
1010
/// value across multiple accesses on the same instance.
1111
/// </summary>
1212
[Fact]
13-
public void IdIsStableAcrossMultipleAccesses()
13+
public void IsStable()
1414
{
1515
// arrange
1616
var item = new IndexItem();
@@ -29,7 +29,7 @@ public void IdIsStableAcrossMultipleAccesses()
2929
/// Verifies that two different IndexItem instances have distinct identifiers.
3030
/// </summary>
3131
[Fact]
32-
public void DifferentInstancesHaveDistinctIds()
32+
public void DistinctIds()
3333
{
3434
// arrange
3535
var item1 = new IndexItem();
@@ -43,7 +43,7 @@ public void DifferentInstancesHaveDistinctIds()
4343
/// Verifies that the Id is a non-empty Guid.
4444
/// </summary>
4545
[Fact]
46-
public void IdIsNotEmpty()
46+
public void IdNotEmpty()
4747
{
4848
// arrange
4949
var item = new IndexItem();

0 commit comments

Comments
 (0)