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
|
public class FallbackRazorProjectHostTest
|
||||||
{
|
{
|
||||||
[Theory]
|
[Theory(Skip = "MonoDevelop.Core.FilePath cannot be loaded due to strong name issues.")]
|
||||||
[InlineData(null)]
|
[InlineData(null)]
|
||||||
[InlineData("")]
|
[InlineData("")]
|
||||||
public void IsMvcAssembly_FailsIfNullOrEmptyFilePath(string filePath)
|
public void IsMvcAssembly_FailsIfNullOrEmptyFilePath(string filePath)
|
||||||
|
|
@ -25,7 +25,7 @@ namespace Microsoft.VisualStudio.Mac.LanguageServices.Razor.ProjectSystem
|
||||||
Assert.False(result);
|
Assert.False(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "MonoDevelop.Core.FilePath cannot be loaded due to strong name issues.")]
|
||||||
public void IsMvcAssembly_FailsIfNotMvc()
|
public void IsMvcAssembly_FailsIfNotMvc()
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
@ -39,7 +39,7 @@ namespace Microsoft.VisualStudio.Mac.LanguageServices.Razor.ProjectSystem
|
||||||
Assert.False(result);
|
Assert.False(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
[Fact]
|
[Fact(Skip = "MonoDevelop.Core.FilePath cannot be loaded due to strong name issues.")]
|
||||||
public void IsMvcAssembly_SucceedsIfMvc()
|
public void IsMvcAssembly_SucceedsIfMvc()
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue