Last active
February 16, 2017 14:57
-
-
Save chomado/647fec351a18a1d3de8c3fda2cbf2dce to your computer and use it in GitHub Desktop.
This file contains 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 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