public void GetFileDescription_should_return_the_file_description_of_the_specified_file() { // Arrange var envRepos = new EnvironmentRepository(); // Act var result = envRepos.GetFileDescription(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"tools\x64\Urasandesu.Prig.dll")); // Assert Assert.That(result, Is.StringMatching(@"Prig Profiler \d+\.\d+\.\d+ Type Library")); }