예제 #1
0
            public void Throws_NotSupportedException()
            {
                // ARRANGE
                var sut = new EmbeddedResourcesFileSystem(Assembly.GetExecutingAssembly());

                // ACT
                var ex = Record.Exception(() => sut.GetLastAccessTime("/file1.txt"));

                // ASSERT
                Assert.IsType <NotSupportedException>(ex);
            }