Exemplo n.º 1
0
            public void Returns_expected_path(string systemPath)
            {
                // ARRANGE
                var sut      = new EmbeddedResourcesFileSystem(Assembly.GetExecutingAssembly());
                var expected = (UPath)systemPath;

                // ACT
                var actual = sut.ConvertPathFromInternal(systemPath);

                // ASSERT
                Assert.Equal(expected, actual);
            }