コード例 #1
0
        public void IsLongPressedName_1()
        {
            var solution = new _0925_LongPressedName();
            var result   = solution.IsLongPressedName("alex", "aaleex");

            Assert.IsTrue(result);
        }
コード例 #2
0
        public void IsLongPressedName_6()
        {
            var solution = new _0925_LongPressedName();
            var result   = solution.IsLongPressedName("vtkgn", "vttkgnn");

            Assert.IsTrue(result);
        }
コード例 #3
0
        public void IsLongPressedName_3()
        {
            var solution = new _0925_LongPressedName();
            var result   = solution.IsLongPressedName("leelee", "lleeelee");

            Assert.IsTrue(result);
        }
コード例 #4
0
        public void IsLongPressedName_4()
        {
            var solution = new _0925_LongPressedName();
            var result   = solution.IsLongPressedName("laiden", "laiden");

            Assert.IsTrue(result);
        }
コード例 #5
0
        public void IsLongPressedName_2()
        {
            var solution = new _0925_LongPressedName();
            var result   = solution.IsLongPressedName("saeed", "ssaaedd");

            Assert.IsFalse(result);
        }