示例#1
0
            public void Should_Return_Filename_Without_Extension_From_Path(string fullPath, string expected)
            {
                // Given
                FilePath path = new FilePath(fullPath);

                // When
                FilePath result = path.GetFilenameWithoutExtension();

                // Then
                Assert.AreEqual(expected, result.FullPath);
            }