Inheritance: Core.API.BaseItemSource
Esempio n. 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);
        }
Esempio n. 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);
        }