remove some tests
This commit is contained in:
parent
fe676e7bc6
commit
b03f4c282b
1 changed files with 0 additions and 26 deletions
|
@ -140,32 +140,6 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Tests
|
||||||
item1.GetMetadataWithName("Name").Value.Should().Be("value");
|
item1.GetMetadataWithName("Name").Value.Should().Be("value");
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
|
||||||
public void HasConflictingMetadata_returns_true_when_items_have_metadata_with_same_name_but_different_value()
|
|
||||||
{
|
|
||||||
var project = ProjectRootElement.Create();
|
|
||||||
var item1 = project.AddItem("test", "include1");
|
|
||||||
item1.AddMetadata("name", "value");
|
|
||||||
|
|
||||||
var item2 = project.AddItem("test1", "include1");
|
|
||||||
item2.AddMetadata("name", "value2");
|
|
||||||
|
|
||||||
item1.HasConflictingMetadata(item2).Should().BeTrue();
|
|
||||||
}
|
|
||||||
|
|
||||||
[Fact]
|
|
||||||
public void HasConflictingMetadata_returns_false_when_items_have_metadata_with_same_nameand_value()
|
|
||||||
{
|
|
||||||
var project = ProjectRootElement.Create();
|
|
||||||
var item1 = project.AddItem("test", "include1");
|
|
||||||
item1.AddMetadata("name", "value");
|
|
||||||
|
|
||||||
var item2 = project.AddItem("test1", "include1");
|
|
||||||
item2.AddMetadata("name", "value");
|
|
||||||
|
|
||||||
item1.HasConflictingMetadata(item2).Should().BeFalse();
|
|
||||||
}
|
|
||||||
|
|
||||||
[Fact]
|
[Fact]
|
||||||
public void Includes_returns_include_value_split_by_semicolon()
|
public void Includes_returns_include_value_split_by_semicolon()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue