Commit
This commit is contained in:
parent
8b61ca41fa
commit
17883e16e1
41 changed files with 3173 additions and 0 deletions
|
@ -0,0 +1,83 @@
|
|||
using System;
|
||||
using System.Text;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using Microsoft.VsSDK.IntegrationTestLibrary;
|
||||
using Microsoft.VSSDK.Tools.VsIdeTesting;
|
||||
|
||||
namespace VSPackageInstall_IntegrationTests.IntegrationTests
|
||||
{
|
||||
[TestClass]
|
||||
public class CSharpProjectTests
|
||||
{
|
||||
#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 CSharpProjectTests()
|
||||
{
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Additional test attributes
|
||||
//
|
||||
// You can use the following additional attributes as you write your tests:
|
||||
//
|
||||
// Use ClassInitialize to run code before running the first test in the class
|
||||
// [ClassInitialize()]
|
||||
// public static void MyClassInitialize(TestContext testContext) { }
|
||||
//
|
||||
// Use ClassCleanup to run code after all tests in a class have run
|
||||
// [ClassCleanup()]
|
||||
// public static void MyClassCleanup() { }
|
||||
//
|
||||
// Use TestInitialize to run code before running each test
|
||||
// [TestInitialize()]
|
||||
// public void MyTestInitialize() { }
|
||||
//
|
||||
// Use TestCleanup to run code after each test has run
|
||||
// [TestCleanup()]
|
||||
// public void MyTestCleanup() { }
|
||||
//
|
||||
#endregion
|
||||
|
||||
[TestMethod]
|
||||
[HostType("VS IDE")]
|
||||
public void WinformsApplication()
|
||||
{
|
||||
UIThreadInvoker.Invoke((ThreadInvoker)delegate()
|
||||
{
|
||||
TestUtils testUtils = new TestUtils();
|
||||
|
||||
testUtils.CreateEmptySolution(TestContext.TestDir, "CSWinApp");
|
||||
Assert.AreEqual<int>(0, testUtils.ProjectCount());
|
||||
|
||||
//Create Winforms application project
|
||||
//TestUtils.CreateProjectFromTemplate("MyWindowsApp", "Windows Application", "CSharp", false);
|
||||
//Assert.AreEqual<int>(1, TestUtils.ProjectCount());
|
||||
|
||||
//TODO Verify that we can debug launch the application
|
||||
|
||||
//TODO Set Break point and verify that will hit
|
||||
|
||||
//TODO Verify Adding new project item to project
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue