pierre3 / PlantUmlClassDiagramGenerator

This is a generator to create a class-diagram of PlantUML from the C# source code.
MIT License
683 stars 133 forks source link

Test cases now run on non-Windows OSes #73

Closed Zacch closed 1 year ago

Zacch commented 1 year ago

Thank you for making and maintaining this useful tool!

All of the test cases crashed on my Mac since the calls to File.ReadAllText() contained strings with Windows path separators. I added calls to Path.Combine() instead, so that the correct separators will be used on all systems. Furthermore, the file "InputClasses.cs" was referred to as "inputClasses.cs", with a lowercase "i" which caused errors on file systems that distinguish between cases.

I also fixed a typo ("requierd") that appeared in several file names.

pierre3 commented 1 year ago

@Zacch
Merged. Thank you for the pull request!