Inheritance: Core.API.BaseItemSource
示例#1
0
        public void CanReturnBooksInMyPc()
        {
            var source = new CalibreBookSource();
            source.Log = new MockLog();

            source.Config = new Configuration();

            var items = source.GetItems().ToList();
            Assert.NotEqual(0, items.Count);
        }
示例#2
0
        public void CanReturnBooksInMyPc()
        {
            var source = new CalibreBookSource();

            source.Log = new MockLog();

            source.Config = new Configuration();

            var items = source.GetItems().ToList();

            Assert.NotEqual(0, items.Count);
        }