単体テストを使用して、ソース コード内のいくつかの関数をテストしたいと考えています。テストを実行すると、テスト結果が得られません。
これが私がやろうとしている簡単なコードスニペットです:
#include <iostream>
using namespace std;
namespace UnitTest
{
[TestClass]
public ref class UnitTestBlueSmart
int main(){
public:
[TestMethod()]
hello();
}
}
void hello(){
cout<<"Hello World!";
}
これが機能しない理由を誰かが知っていますか?