Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,7 @@ - (void)testCreateOptionsWithDictionaryNativeCrashHandlingDefault
error:&error];
XCTAssertNotNil(actualOptions, @"Did not create sentry options");
XCTAssertNil(error, @"Should not pass no error");
XCTAssertEqual([actualOptions.integrations containsObject:@"SentryCrashIntegration"], true,
@"Did not set native crash handling");
XCTAssertTrue(actualOptions.enableCrashHandler, @"Did not set native crash handling");
}

- (void)testCreateOptionsWithDictionaryAutoPerformanceTracingDefault
Expand Down Expand Up @@ -99,8 +98,7 @@ - (void)testCreateOptionsWithDictionaryNativeCrashHandlingEnabled
error:&error];
XCTAssertNotNil(actualOptions, @"Did not create sentry options");
XCTAssertNil(error, @"Should not pass no error");
XCTAssertEqual([actualOptions.integrations containsObject:@"SentryCrashIntegration"], true,
@"Did not set native crash handling");
XCTAssertTrue(actualOptions.enableCrashHandler, @"Did not set native crash handling");
}

- (void)testCreateOptionsWithDictionaryAutoPerformanceTracingEnabled
Expand Down
Loading