コード例 #1
0
ファイル: SomaTests.cs プロジェクト: nallonp/LibraryCalc17
        public void SomaSucesso(int x, int y)
        {
            var soma = new Soma();

            Assert.True((x + y) == soma.Calcula(x, y));
        }