Skip to content

Commit

Permalink
Updated test names to follow convention
Browse files Browse the repository at this point in the history
  • Loading branch information
srodriguezinfragistics committed Oct 9, 2024
1 parent c2be041 commit 8dc775f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Reveal.Sdk.Dom.Tests.Core.Utilities
public class RdashDocumentValidatorFixture
{
[Fact]
public void DataSources_AddedToRdashDocument()
public void Validate_AddsDataSources_ToRdashDocument()
{
var dataSourceItem = new DataSourceItemFactory().Create(DataSourceType.REST, "", "").SetFields(new List<IField>() { new TextField("Test") });

Expand All @@ -26,7 +26,7 @@ public void DataSources_AddedToRdashDocument()
}

[Fact]
public void DataSources_FromVisualizationsAreNotDuplicated()
public void Validate_PreventsDuplicateDataSources_FromVisualizations()
{
var dataSourceItem = new DataSourceItemFactory().Create(DataSourceType.REST, "", "").SetFields(new List<IField>() { new TextField("Test") });

Expand All @@ -46,7 +46,7 @@ public void DataSources_FromVisualizationsAreNotDuplicated()
}

[Fact]
public void DataSources_FromVisualizations_AndDataSources_AreNotDuplicated()
public void Validate_PreventsDuplicateDataSources_FromVisualizationsAndDataSources()
{
var dataSourceItem = new DataSourceItemFactory().Create(DataSourceType.REST, "", "").SetFields(new List<IField>() { new TextField("Test") });
var dataSource = dataSourceItem.DataSource;
Expand Down

0 comments on commit 8dc775f

Please sign in to comment.