Reviewed By: lblasa Differential Revision: D48191484 fbshipit-source-id: 6838590f4e10b4613074e9e9d112a62d4688f739
17 lines
321 B
Objective-C
17 lines
321 B
Objective-C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "MockDatabaseDescriptor.h"
|
|
|
|
@implementation MockDatabaseDescriptor
|
|
|
|
- (NSString*)name {
|
|
return @"MockDatabase";
|
|
}
|
|
|
|
@end
|