Browse Source

Got the tests to compile. They all don't run on my machine.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@3291 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Justin Dearing 17 years ago
parent
commit
ccc0e49a90
  1. 8
      src/AddIns/BackendBindings/Python/PythonBinding/Test/Utils/MockProject.cs
  2. 4
      src/Main/Base/Test/StringTagProvider/MockProjectForTagProvider.cs

8
src/AddIns/BackendBindings/Python/PythonBinding/Test/Utils/MockProject.cs

@ -41,6 +41,14 @@ namespace PythonBinding.Tests.Utils @@ -41,6 +41,14 @@ namespace PythonBinding.Tests.Utils
}
}
public bool ReadOnly {
get
{
FileAttributes attributes = File.GetAttributes(FileName);
return ((FileAttributes.ReadOnly & attributes) == FileAttributes.ReadOnly);
}
}
public ICollection<ItemType> AvailableFileItemTypes {
get {
throw new NotImplementedException();

4
src/Main/Base/Test/StringTagProvider/MockProjectForTagProvider.cs

@ -62,6 +62,10 @@ namespace ICSharpCode.SharpDevelop.Tests.StringTagProvider @@ -62,6 +62,10 @@ namespace ICSharpCode.SharpDevelop.Tests.StringTagProvider
set { directory = value; }
}
public bool ReadOnly {
get { return false; }
}
public string AssemblyName {
get {
throw new NotImplementedException();

Loading…
Cancel
Save