mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
61 lines
1.6 KiB
Objective-C
Executable File
61 lines
1.6 KiB
Objective-C
Executable File
/**
|
|
* 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. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class FBApplication;
|
|
@class FBElementCache;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/*! Exception used to notify about application crash */
|
|
extern NSString *const FBApplicationCrashedException;
|
|
|
|
/**
|
|
Class that represents testing session
|
|
*/
|
|
@interface FBSession : NSObject
|
|
|
|
/*! Application tested during that session */
|
|
@property (nonatomic, strong, readonly) FBApplication *application;
|
|
|
|
/*! Session's identifier */
|
|
@property (nonatomic, copy, readonly) NSString *identifier;
|
|
|
|
/*! Element cache related to that session */
|
|
@property (nonatomic, strong, readonly) FBElementCache *elementCache;
|
|
|
|
+ (nullable instancetype)activeSession;
|
|
|
|
/**
|
|
Fetches session for given identifier.
|
|
If identifier doesn't match activeSession identifier, will return nil.
|
|
|
|
@param identifier Identifier for searched session
|
|
@return session. Can return nil if session does not exists
|
|
*/
|
|
+ (nullable instancetype)sessionWithIdentifier:(NSString *)identifier;
|
|
|
|
/**
|
|
Creates and saves new session for application
|
|
|
|
@param application The application that we want to create session for
|
|
@return new session
|
|
*/
|
|
+ (instancetype)sessionWithApplication:(nullable FBApplication *)application;
|
|
|
|
/**
|
|
Kills application associated with that session and removes session
|
|
*/
|
|
- (void)kill;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|