Browse Source

- Implement IServiceProvider members in MockViewContent's. Hopefully fixes build.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/wpfdesigner@6159 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Kumar Devvrat 16 years ago
parent
commit
05151dfa48
  1. 7
      src/AddIns/BackendBindings/Python/PythonBinding/Test/Utils/MockViewContent.cs
  2. 5
      src/AddIns/BackendBindings/WixBinding/Test/Utils/MockViewContent.cs
  3. 5
      src/AddIns/DisplayBindings/XmlEditor/Test/Utils/MockViewContent.cs

7
src/AddIns/BackendBindings/Python/PythonBinding/Test/Utils/MockViewContent.cs

@ -224,6 +224,11 @@ namespace PythonBinding.Tests.Utils @@ -224,6 +224,11 @@ namespace PythonBinding.Tests.Utils
if (IsDirtyChanged != null) {
IsDirtyChanged(this, e);
}
}
}
public GetService(Type serviceType)
{
return null;
}
}
}

5
src/AddIns/BackendBindings/WixBinding/Test/Utils/MockViewContent.cs

@ -165,5 +165,10 @@ namespace WixBinding.Tests.Utils @@ -165,5 +165,10 @@ namespace WixBinding.Tests.Utils
{
throw new NotImplementedException();
}
public GetService(Type serviceType)
{
return null;
}
}
}

5
src/AddIns/DisplayBindings/XmlEditor/Test/Utils/MockViewContent.cs

@ -168,5 +168,10 @@ namespace XmlEditor.Tests.Utils @@ -168,5 +168,10 @@ namespace XmlEditor.Tests.Utils
{
throw new NotImplementedException();
}
public GetService(Type serviceType)
{
return null;
}
}
}

Loading…
Cancel
Save