4
你怎麼做等價的:如何在C++/CLI NUnit測試中使用ExpectedException?
[Test, ExpectedException(typeof(ArgumentOutOfRangeException))]
void Test_Something_That_Throws_Exception()
{
throw gcnew ArgumentOutOfRangeException("Some more detail");
}
...在C++(例子中有C#)?據我所見,NUnit的C++實現沒有typeof()函數。