我使用 Visual Studio 2010 SP1 和包向导为扩展生成单元测试。单元测试通过,但 UIThreadInvoker.Invoke 调用上的集成测试(未修改)失败,并出现 NullReferenceException。我在向导中添加了一个菜单和一个带有复选框的工具窗口。
测试方法 VSPackage2_IntegrationTests.IntegrationTests.CSharpProjectTests.WinformsApplication 抛出异常:System.NullReferenceException:对象引用未设置为对象的实例。在 Microsoft.VSSDK.Tools.VsIdeTesting.UIThreadInvoker.Invoke(Delegate method) in f:\dd\VSSDK\VSIntegration\Tools\src\IDEHostAdapter\Framework\UIThreadInvoker.cs:VSPackage2_IntegrationTests.IntegrationTests.CSharpProjectTests.WinformsApplication() 的第 44 行在 CSharpProjectTests.cs 中:第 62 行
using System;
using System.Text;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VsSDK.IntegrationTestLibrary;
using Microsoft.VSSDK.Tools.VsIdeTesting;
namespace VSPackage2_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
});
}
}
}
UIThreadInvoker.cs 没有来源可以查看发生空异常的位置...我一定是在设置中做错了什么,所以我重新安装了 SDK 无济于事。我还再次使用包向导进行了仔细检查,第二个解决方案得到了相同的错误。我已经尝试注释掉委托的全部和部分内容,但仍然失败。所有其他集成测试也会在同一位置失败并出现相同的错误。
编辑:在进一步研究这个问题后,我将测试的初始部分修改为:
[TestMethod]
[HostType("VS IDE")]
public void PackageLoadTest()
{
UIThreadInvoker.Initialize();
UIThreadInvoker.Invoke((ThreadInvoker)OnThreadInvoker);
}
private void OnThreadInvoker()
{
TestUtils testUtils = new TestUtils();
testUtils.CreateEmptySolution(TestContext.TestDir, "CSWinApp");
....
}
在调试器中,它到达最终使用 VsIdeTestHostContext.ServiceProvider 的 CreateEmptySolution 方法,该方法为空。事实上,VsIdeTestHostContext 似乎未初始化。但是我找不到初始化它的方法。由于某种原因,VS IDE 主机类型似乎没有启动,或者至少没有及时启动。