Exemplo n.º 1
0
        public void StringToIntTest_AがBより小さい()
        {
            string A      = "3";
            string B      = "4";
            int?   result = new MvcBook.Logics.StringToIntLogic().StringToInt(A, B);

            Assert.AreEqual(result, 7);
        }
Exemplo n.º 2
0
        public void StringToIntTest_AはBに等しい()
        {
            string A      = "2";
            string B      = "2";
            int?   result = new MvcBook.Logics.StringToIntLogic().StringToInt(A, B);

            Assert.AreEqual(result, 4);
        }
Exemplo n.º 3
0
        public void StringToIntTest_B変換整形できない()
        {
            string A      = "0";
            string B      = "test";
            int?   result = new MvcBook.Logics.StringToIntLogic().StringToInt(A, B);

            Assert.IsNull(result);
        }
Exemplo n.º 4
0
        public void StringToIntTest_AはBより大きい()
        {
            string A      = "1";
            string B      = "0";
            int?   result = new MvcBook.Logics.StringToIntLogic().StringToInt(A, B);

            Assert.AreEqual(result, 1);
        }
Exemplo n.º 5
0
        public void StringToIntTest_AがNull()
        {
            string A      = null;
            string B      = "test";
            int?   result = new MvcBook.Logics.StringToIntLogic().StringToInt(A, B);

            Assert.IsNull(result);
        }