Skip to content

Commit

Permalink
Added xunit 2.4.1 and description for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Mar 21, 2019
1 parent 48247fa commit 334f6c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
<PackageReference Include="Microsoft.VSSDK.UnitTestLibrary" Version="14.3.25407" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="stdole" Version="7.0.3303" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.console" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.vsix" Version="0.4.0-alpha.17" />
<PackageReference Include="Microsoft.VisualStudio.Setup.Configuration.Interop" PrivateAssets="all" Version="1.16.30" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions test/BuildVision.IntegrationTests/PackageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class PackageTests
private static IVsUIShell UiShellService => GlobalServices.GetService<SVsUIShell>() as IVsUIShell;
private static DTE DTE => GlobalServices.GetService<DTE>() as DTE;

[VsixFact("15.0")]
[VsixFact("15.0", DisplayName = "PackageLoad_Should_Succeed")]
public void PackageLoad_Should_Succeed()
{
IVsPackage package;
Expand All @@ -29,7 +29,7 @@ public void PackageLoad_Should_Succeed()
Assert.NotNull(package);
}

[VsixFact("15.0")]
[VsixFact("15.0", DisplayName = "ClickOnBuildVisionMenuItem_Should_ShowBuildVision")]
public void ClickOnBuildVisionMenuItem_Should_ShowBuildVision()
{
var toolwndCommandId = new CommandID(PackageGuids.GuidBuildVisionCmdSet, (int) PackageIds.CmdIdBuildVisionToolWindow);
Expand Down

0 comments on commit 334f6c2

Please sign in to comment.