Skip to content

Instantly share code, notes, and snippets.

@masaru-b-cl
Created June 9, 2016 13:52
Show Gist options
  • Save masaru-b-cl/f28ecbed4f46c350322e70f46582e9f8 to your computer and use it in GitHub Desktop.
Save masaru-b-cl/f28ecbed4f46c350322e70f46582e9f8 to your computer and use it in GitHub Desktop.
refactor test code
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");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment