Beispiel #1
0
        public void Load_WhenPathIsNull_Throws()
        {
            IFileBackingStore test = BuildDefaultFileBackingStoreService();

            test.Path = null;
            Assert.Throws(typeof(InvalidOperationException), () => test.Load());
        }