Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created December 6, 2013 16:02
Show Gist options
  • Save masaru-b-cl/7827180 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/7827180 to your computer and use it in GitHub Desktop.
TDD Advendt Calendar 2013 - リスト3
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace TddAdventJp2013.Test
{
public class 内部クラス
{
[TestClass]
public class Aがa1の場合
{
[TestMethod]
public void Bがb1ならばc1となる()
{
}
[TestMethod]
public void Bがb2ならばc2となる()
{
}
}
[TestClass]
public class Aがa2の場合
{
[TestMethod]
public void Bがb1ならばc3となる()
{
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment