Exemplo n.º 1
0
        public void ID取得_レコードなし()
        {
            var domain = new FileDomain(@".\TestCase\FileStore\");

            Assert.True(domain.getId() == "1");
            return;
        }
Exemplo n.º 2
0
        public void ID取得_レコードなし()
        {
            var domain = new FileDomain(@".\TestCase\FileStore\");

            Assert.True(domain.getId() == "1");
            return;
        }
Exemplo n.º 3
0
        public void ID取得_レコードあり()
        {
            var domain = new FileDomain(@".\TestCase\FileStore\");

            Model.File file = null;
            file = domain.Regist2DB("Test_Text.txt", "1");
            file = domain.Regist2DB("Test_Text.txt", "2");
            Assert.True(domain.getId() == "3");
            return;
        }
Exemplo n.º 4
0
        public void ID取得_レコードあり()
        {
            var domain = new FileDomain(@".\TestCase\FileStore\");

            Model.File file = null;
            file = domain.Regist2DB("Test_Text.txt", "1");
            file = domain.Regist2DB("Test_Text.txt", "2");
            Assert.True(domain.getId() == "3");
            return;
        }