Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created June 9, 2016 14:02
Show Gist options
  • Save masaru-b-cl/759ff5677ec0877dfb9f1ead1cefa48f to your computer and use it in GitHub Desktop.
Save masaru-b-cl/759ff5677ec0877dfb9f1ead1cefa48f to your computer and use it in GitHub Desktop.
trianglation
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