Skip to content

Instantly share code, notes, and snippets.

@chomado
Last active February 16, 2017 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chomado/647fec351a18a1d3de8c3fda2cbf2dce to your computer and use it in GitHub Desktop.
Save chomado/647fec351a18a1d3de8c3fda2cbf2dce to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LiveUnitTestSample
{
public class Calc
{
// テスト失敗のケースを見たいので、この足し算メソッドは、最初は「必ず1を返す」関数として定義
public static int Add(int x, int y) => 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment