Workaround MonoDevelop.Core.FilePath tests failing to run due to strong name issues.
This commit is contained in:
parent
1d602d1205
commit
a6d03bd407
|
|
@ -9,7 +9,7 @@ namespace Microsoft.VisualStudio.Mac.LanguageServices.Razor.ProjectSystem
|
|||
{
|
||||
public class FallbackRazorProjectHostTest
|
||||
{
|
||||
[Theory]
|
||||
[Theory(Skip = "MonoDevelop.Core.FilePath cannot be loaded due to strong name issues.")]
|
||||
[InlineData(null)]
|
||||
[InlineData("")]
|
||||
public void IsMvcAssembly_FailsIfNullOrEmptyFilePath(string filePath)
|
||||
|
|
@ -25,7 +25,7 @@ namespace Microsoft.VisualStudio.Mac.LanguageServices.Razor.ProjectSystem
|
|||
Assert.False(result);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "MonoDevelop.Core.FilePath cannot be loaded due to strong name issues.")]
|
||||
public void IsMvcAssembly_FailsIfNotMvc()
|
||||
{
|
||||
// Arrange
|
||||
|
|
@ -39,7 +39,7 @@ namespace Microsoft.VisualStudio.Mac.LanguageServices.Razor.ProjectSystem
|
|||
Assert.False(result);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
[Fact(Skip = "MonoDevelop.Core.FilePath cannot be loaded due to strong name issues.")]
|
||||
public void IsMvcAssembly_SucceedsIfMvc()
|
||||
{
|
||||
// Arrange
|
||||
|
|
|
|||
Loading…
Reference in New Issue