From 7d552e1abe11e942198aec8ccf18c97ee606813d Mon Sep 17 00:00:00 2001 From: Montana Mendy Date: Mon, 10 Jul 2023 06:53:34 -0700 Subject: [PATCH] using Google's formatting method for ObjC --- .../FastImageCacheTests/FastImageCacheTests.m | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/FastImageCache/FastImageCacheTests/FastImageCacheTests.m b/FastImageCache/FastImageCacheTests/FastImageCacheTests.m index 8a16cdb..631449c 100644 --- a/FastImageCache/FastImageCacheTests/FastImageCacheTests.m +++ b/FastImageCache/FastImageCacheTests/FastImageCacheTests.m @@ -16,25 +16,27 @@ @interface FastImageCacheTests : XCTestCase @implementation FastImageCacheTests - (void)setUp { - [super setUp]; - // Put setup code here. This method is called before the invocation of each test method in the class. + [super setUp]; + // Put setup code here. This method is called before the invocation of each + // test method in the class. } - (void)tearDown { - // Put teardown code here. This method is called after the invocation of each test method in the class. - [super tearDown]; + // Put teardown code here. This method is called after the invocation of each + // test method in the class. + [super tearDown]; } - (void)testExample { - // This is an example of a functional test case. - XCTAssert(YES, @"Pass"); + // This is an example of a functional test case. + XCTAssert(YES, @"Pass"); } - (void)testPerformanceExample { - // This is an example of a performance test case. - [self measureBlock:^{ - // Put the code you want to measure the time of here. - }]; + // This is an example of a performance test case. + [self measureBlock:^{ + // Put the code you want to measure the time of here. + }]; } @end