Skip to content

Commit

Permalink
Setting Exp flag
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Mar 21, 2019
1 parent 2776e37 commit 12c8e7c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 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", DisplayName = "PackageLoad_Should_Succeed")]
[VsixFact(VisualStudioVersion.Current, RootSuffix = "Exp", RunOnUIThread = true)]
public void PackageLoad_Should_Succeed()
{
IVsPackage package;
Expand All @@ -29,9 +29,10 @@ public void PackageLoad_Should_Succeed()
Assert.NotNull(package);
}

[VsixFact("15.0", DisplayName = "ClickOnBuildVisionMenuItem_Should_ShowBuildVision")]
[VsixFact(VisualStudioVersion.Current, RootSuffix = "Exp", RunOnUIThread = true)]
public void ClickOnBuildVisionMenuItem_Should_ShowBuildVision()
{
Assert.True(false);
var toolwndCommandId = new CommandID(PackageGuids.GuidBuildVisionCmdSet, (int) PackageIds.CmdIdBuildVisionToolWindow);
ExecuteCommand(toolwndCommandId);
Assert.True(CanFindToolwindow(PackageGuids.GuidBuildVisionToolWindow));
Expand Down

0 comments on commit 12c8e7c

Please sign in to comment.