Created
June 9, 2016 14:02
-
-
Save masaru-b-cl/759ff5677ec0877dfb9f1ead1cefa48f to your computer and use it in GitHub Desktop.
trianglation
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 FizzBuzz.Test | |
{ | |
[TestClass] | |
public class FizzBuzzTest | |
{ | |
[TestMethod] | |
public void 引数が1の場合文字列で1を返す() | |
{ | |
var fizzBuzzer = new FizzBuzzer(); | |
fizzBuzzer.Say(1).Is("1"); | |
} | |
[TestMethod] | |
public void 引数が2の場合文字列で2を返す() | |
{ | |
var fizzBuzzer = new FizzBuzzer(); | |
fizzBuzzer.Say(2).Is("2"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment