Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Last active June 8, 2016 15:11
Show Gist options
  • Save masaru-b-cl/cdda93d1bd1faf6089222693b44c5c67 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/cdda93d1bd1faf6089222693b44c5c67 to your computer and use it in GitHub Desktop.
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