Commit
This commit is contained in:
parent
8b61ca41fa
commit
17883e16e1
41 changed files with 3173 additions and 0 deletions
|
@ -0,0 +1,55 @@
|
|||
using System;
|
||||
using System.Text;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.VisualStudio.Shell.Interop;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Microsoft.VSSDK.Tools.VsIdeTesting;
|
||||
using EnvDTE;
|
||||
using System.IO;
|
||||
using Microsoft.VsSDK.IntegrationTestLibrary;
|
||||
|
||||
|
||||
namespace VSPackageInstall_IntegrationTests.IntegrationTests
|
||||
{
|
||||
[TestClass]
|
||||
public class SolutionTests
|
||||
{
|
||||
#region fields
|
||||
private delegate void ThreadInvoker();
|
||||
private TestContext _testContext;
|
||||
#endregion
|
||||
|
||||
#region properties
|
||||
/// <summary>
|
||||
///Gets or sets the test context which provides
|
||||
///information about and functionality for the current test run.
|
||||
///</summary>
|
||||
public TestContext TestContext
|
||||
{
|
||||
get { return _testContext; }
|
||||
set { _testContext = value; }
|
||||
}
|
||||
#endregion
|
||||
|
||||
|
||||
#region ctors
|
||||
public SolutionTests()
|
||||
{
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
[TestMethod]
|
||||
[HostType("VS IDE")]
|
||||
public void CreateEmptySolution()
|
||||
{
|
||||
UIThreadInvoker.Invoke((ThreadInvoker)delegate()
|
||||
{
|
||||
TestUtils testUtils = new TestUtils();
|
||||
testUtils.CloseCurrentSolution(__VSSLNSAVEOPTIONS.SLNSAVEOPT_NoSave);
|
||||
testUtils.CreateEmptySolution(TestContext.TestDir, "EmptySolution");
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue