Exemplo n.º 1
0
        public void CheckInputLength_MoreThan2Params_ThrowsException()
        {
            //given
            string[] args = { "01/01/01", "01/01/01", "01/01/01" };

            //when
            InputValidator.CheckInputLength(args);
        }
Exemplo n.º 2
0
        public void CheckInputLength_WithoutParams_ThrowsException()
        {
            //given
            string[] args = { };

            //when
            InputValidator.CheckInputLength(args);
        }
Exemplo n.º 3
0
        public void CheckInputLength_OnlyOneParam_ThrowsException()
        {
            //given
            string[] args = { "01/01/01" };

            //when
            InputValidator.CheckInputLength(args);
        }