blob: a1323c3dbd101f42df1cfa198511e8ff2f0e751f [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/showcase/test/showcase_test_case.h"
#import "ios/showcase/test/showcase_test_case_app_interface.h"
#import "ios/testing/earl_grey/coverage_utils.h"
#import "ios/testing/earl_grey/earl_grey_test.h"
@implementation ShowcaseTestCase
+ (void)setUpForTestCase {
[super setUpForTestCase];
[ShowcaseTestCase setUpHelper];
}
+ (void)setUpHelper {
[CoverageUtils configureCoverageReportPath];
}
- (void)setUp {
[super setUp];
[ShowcaseTestCaseAppInterface setupUI];
}
@end