Remove prior verison of test.

This commit is contained in:
Marc Paine 2022-10-25 10:55:35 -07:00
parent 1138045cdd
commit 4f0837a5ef

View file

@ -1,23 +0,0 @@
using System;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Xml.Linq;
using FluentAssertions;
using Microsoft.DotNet.TestFramework;
using Microsoft.DotNet.Tools.Test.Utilities;
using Xunit;
namespace EndToEnd.Tests
{
public class OfficialBuilderTests : TestBase
{
[Fact]
public void OfficialBuilderAtrribute()
{
var dotnetdir = Path.Combine(Path.GetDirectoryName(RepoDirectoriesProvider.DotnetUnderTest), "sdk", "7.0.100-dev");
var result = AssemblyInfo.Get(Path.Combine(dotnetdir, "dotnet.dll"), "AssemblyMetadataAttribute");
result.Should().Contain("OfficialBuilder:Microsoft");
}
}
}