Skip to content

Commit

Permalink
Fixing test for extended public surface
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-at-octopus committed Aug 11, 2021
1 parent 76f3477 commit b1c866b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -668,4 +668,12 @@ public ProxyException(string message) { }
public ProxyException(string message, Exception innerException) { }
protected ProxyException(SerializationInfo info, StreamingContext context) { }
}
}
namespace Halibut.Util
{
public static class TypeExtensionMethods
{
public static bool AllowedOnHalibutInterface(Type type) { }
public static IEnumerable<MethodInfo> GetHalibutServiceMethods(Type serviceType) { }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -675,4 +675,12 @@ public ProxyException(string message) { }
public ProxyException(string message, Exception innerException) { }
protected ProxyException(SerializationInfo info, StreamingContext context) { }
}
}
namespace Halibut.Util
{
public static class TypeExtensionMethods
{
public static bool AllowedOnHalibutInterface(Type type) { }
public static IEnumerable<MethodInfo> GetHalibutServiceMethods(Type serviceType) { }
}
}

0 comments on commit b1c866b

Please sign in to comment.