我目前正在为一个班级开发一个 Windows 应用商店应用程序 (Windows 8),但在运行我的 NUnit 测试时遇到了问题。
我的解决方案/项目设置如下所示:
地铁应用程序.sln
- SQLite-net.csproj - 类库(Windows 商店应用程序)。文件是从 NuGet 中提取的。
- DataModel.csproj - 类库(Windows 应用商店应用)
- UnitTests.csproj - 单元测试库(Windows 商店应用程序)。NUnit 框架是从 NuGet 中提取的。
- TheMetroApp.csproj - 从 Windows SDK 示例之一中提取的项目文件。
杂项。依赖项和实用程序
- Windows 8 专业版 RTM/Visual Studio 2012 RTM
- 锐化 7
- NUnit 2.6.1
- SQLite(按照此处的说明进行设置)
UnitTests 依赖并引用 DataModel。DataModel 依赖并引用 SQLite-net。我添加到 UnitTests 项目的唯一内容是包含一些存根 NUnit 单元测试的单个类。据我所知,这些设置正确:
[TestFixture]
public class TaskSourceTests
{
#region Private Class Members
private ITaskSource _taskSource;
private String _dbPath;
#endregion
#region Testing Infrastructure
[SetUp]
public void SetUp()
{
// This part makes NUnit/ReSharper have problems.
_dbPath = Path.Combine(ApplicationData.Current.LocalFolder.Path, "UnitTestDatabase.sqlite");
}
#endregion
#region Misc. CRUD stuff
[Test]
public void CreateTaskTest()
{
// Save the task.
Task task = new Task( "Some Task", "lol.", DateTime.Now, false );
_taskSource.Save( task );
// Confirm that it is in the task db.
using( SQLiteConnection db = new SQLiteConnection( _dbPath ) )
{
const String query = "SELECT * FROM Task WHERE Id = ?";
IList<Task> results = db.Query<Task>( query, task.Id );
Assert.True( results.Contains( task ) );
}
}
// ...and so on [but with stubs that are basically Assert.Fail( "" )].
#endregion
}
TheMetroApp 是 Windows 8 SDK 示例项目之一,但包含一些自定义 XAML 表单。我对这个项目没有任何问题。
我的问题是我尝试使用的单元测试运行器都没有工作。
当我尝试使用官方 NUnit x86 测试运行器(版本 2.6.1)时,由于证书相关问题,我的测试失败(请参阅此处):
UnitTests.TaskSourceTests.CreateTaskTest:
SetUp : System.InvalidOperationException : The process has no package identity. (Exception from HRESULT: 0x80073D54)
ReSharper 的 NUnit 测试运行程序因完全相同的原因而失败。不幸的是,目前似乎没有解决方法。
我还尝试使用 Visual Studio 2012 中内置的测试运行器(通过NUnit Visual Studio 测试适配器)。当我尝试使用“全部运行”运行测试时,我得到以下输出:
------ Run test started ------
Updating the layout...
Checking whether required frameworks are installed...
Registering the application to run from layout...
Deployment complete. Full package name: "GibberishAndStuff"
No test is available in C:\Projects\project-name\ProjectName\UnitTests\bin\Debug\UnitTests.dll. Make sure that installed test discoverers & executors, platform & framework version settings are appropriate and try again.
========== Run test finished: 0 run (0:00:09.4873768) ==========
我注意到的一些奇怪的事情是,如果我在测试资源管理器中选择一个特定的测试并告诉它运行,我会收到一条略有不同的错误消息:
Could not find test executor with URI 'executor://nunittestexecutor/'. Make sure that the test executor is installed and supports .net runtime version 4.0.30319.18010.
这有点令人困惑,因为我安装了 NUnit 测试适配器。我在测试适配器的启动板页面上没有看到与我的问题类似的任何内容。
我不确定我应该从哪里开始。如果这不起作用,我不介意修改我的项目以使用 xUnit.net、Microsoft 的单元测试框架或其他东西。如果我能让 NUnit 正常工作,那就太棒了。
谢谢!