Created
December 6, 2013 16:00
-
-
Save masaru-b-cl/7827153 to your computer and use it in GitHub Desktop.
TDD Advendt Calendar 2013 - リスト1
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 System; | |
| using Microsoft.VisualStudio.TestTools.UnitTesting; | |
| namespace TddAdventJp2013.Test | |
| { | |
| [TestClass] | |
| public class テストケース名 | |
| { | |
| [TestMethod] | |
| public void Aがa1の場合・Bがb1ならばc1となる() | |
| { | |
| } | |
| [TestMethod] | |
| public void Aがa1の場合・Bがb2ならばc2となる() | |
| { | |
| } | |
| [TestMethod] | |
| public void Aがa2の場合・Bがb1ならばc3となる() | |
| { | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment