Files
custom_wda/WebDriverAgentTests/UnitTests/Doubles/XCUIApplicationDouble.m

67 lines
877 B
Mathematica
Raw Permalink Normal View History

2026-02-03 16:52:44 +08:00
/**
* Copyright (c) 2015-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#import "XCUIApplicationDouble.h"
@interface XCUIApplicationDouble ()
@property (nonatomic, assign, readwrite) BOOL didTerminate;
@end
@implementation XCUIApplicationDouble
- (instancetype)init
{
self = [super init];
if (self) {
_bundleID = @"some.bundle.identifier";
}
return self;
}
- (void)terminate
{
self.didTerminate = YES;
}
- (NSUInteger)processID
{
return 0;
}
- (NSString *)bundleID
{
return @"com.facebook.awesome";
}
- (void)fb_nativeResolve
{
}
- (id)query
{
return nil;
}
- (BOOL)fb_shouldWaitForQuiescence
{
return NO;
}
-(void)setFb_shouldWaitForQuiescence:(BOOL)value
{
}
- (BOOL)running
{
return NO;
}
@end