]> git.saurik.com Git - apple/security.git/blob - keychain/Trieste/OctagonTestHarness/OctagonTestHarness.m
Security-59306.11.20.tar.gz
[apple/security.git] / keychain / Trieste / OctagonTestHarness / OctagonTestHarness.m
1 //
2 // OctagonTestHarness.c
3 // Security
4 //
5 // Copyright (c) 2019 Apple Inc. All rights reserved.
6 //
7
8 #import <Foundation/Foundation.h>
9 #import "OctagonTestHarness.h"
10 #import "OctagonTestHarnessXPCServiceProtocol.h"
11
12 Protocol *FrameworkFacadeProtocol = nil;
13
14 @implementation OctagonTestHarnessLoader
15 + (void)load {
16 FrameworkFacadeProtocol = @protocol(OctagonTestHarnessXPCServiceProtocol);
17 }
18 @end