Last active
June 8, 2016 15:11
-
-
Save masaru-b-cl/cdda93d1bd1faf6089222693b44c5c67 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.VisualStudio.TestTools.UnitTesting; | |
namespace Test.MSTest | |
{ | |
[TestClass] | |
public class UnitTest1 //テストクラス | |
{ | |
[TestInitialize] | |
public void SetUp() { /*テスト初期処理*/ } | |
[TestCleanup] | |
public void TearDown() { /*テスト後処理*/ } | |
[TestMethod] | |
public void TestSomething() | |
{ | |
//テスト主処理 | |
“実際の値”.Is(“期待する値"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment