Use Graph SDK instead of manually constructing queries (#2324)

This commit is contained in:
George Pollard
2022-09-07 13:12:36 +12:00
committed by GitHub
parent bd4dfdc592
commit fe51e011d1
10 changed files with 384 additions and 1383 deletions

View File

@ -17,7 +17,8 @@ sealed class TestEndpointAuthorization : EndpointAuthorization {
private readonly RequestType _type;
private readonly IOnefuzzContext _context;
public TestEndpointAuthorization(RequestType type, ILogTracer log, IOnefuzzContext context) : base(context, log) {
public TestEndpointAuthorization(RequestType type, ILogTracer log, IOnefuzzContext context)
: base(context, log, null! /* not needed for test */) {
_type = type;
_context = context;
}