24 lines
761 B
C#
24 lines
761 B
C#
using System.IO;
|
|
using FluentAssertions;
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
using Xunit;
|
|
|
|
namespace EndToEnd.Tests
|
|
{
|
|
public class TelemetryOptOutDefault : TestBase
|
|
{
|
|
[Fact]
|
|
public void TelemetryOptOutDefaultAttribute()
|
|
{
|
|
var versionCommand = new DotnetCommand()
|
|
.ExecuteWithCapturedOutput("--version");
|
|
|
|
var sdkVersion = versionCommand.StdOut.Trim();
|
|
|
|
var dotnetdir = Path.Combine(Path.GetDirectoryName(RepoDirectoriesProvider.DotnetUnderTest), "sdk", sdkVersion);
|
|
|
|
var result = AssemblyInfo.Get(Path.Combine(dotnetdir, "dotnet.dll"), "AssemblyMetadataAttribute");
|
|
result.Should().Contain("TelemetryOptOutDefault:False");
|
|
}
|
|
}
|
|
}
|