public void GetVideosOfRect()
        {
            KedaVideoManager target = new KedaVideoManager();
            List <KedaVideo> actual = target.GetVideosOfRect(100, 33, 104, 37);

            Assert.AreEqual(actual.Count >= 1, true);
        }
        public void GetKedaVideoOfPrison()
        {
            KedaVideoManager target = new KedaVideoManager();
            List <KedaVideo> actual = target.GetVideoOfPrison("620101111");

            Assert.AreEqual(actual.Count >= 1, true);
        }
        public void GetAllVideosByName()
        {
            KedaVideoManager target = new KedaVideoManager();
            List <KedaVideo> actual = target.GetAllVideosByName("酒");

            Assert.AreEqual(actual.Count >= 1, true);
        }
Exemplo n.º 4
0
 public KedaVideoServiceImpl()
 {
     videoManager = new KedaVideoManager();
 }