Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
b314dca
Upgrade project to XCode 10.3.
DanilKorotenko Aug 22, 2019
789124e
Remove unused code.
DanilKorotenko Aug 22, 2019
328f0f9
Fixed use of deprecated functions.
DanilKorotenko Aug 22, 2019
cc10834
Turn on warning Interface declaration of instance variables.
DanilKorotenko Aug 22, 2019
ef46825
Turn on strict selector matching.
DanilKorotenko Aug 22, 2019
25c4878
Turn on warning overriding deprecated methods.
DanilKorotenko Aug 22, 2019
e076f99
Converted DiskArbitrationAppController class to the automated referen…
DanilKorotenko Aug 23, 2019
6dcb0ec
Converted other classes to the automated references counting.
DanilKorotenko Aug 23, 2019
29389bb
Method refactoring.
DanilKorotenko Aug 23, 2019
fa4fecd
Xib files were resaved in a new version of XCode.
DanilKorotenko Aug 23, 2019
f270828
DiscDescription prepoerty type was changed to NSDictionary class.
DanilKorotenko Aug 23, 2019
faf329a
os_log was used instead of fprintf.
DanilKorotenko Aug 23, 2019
d3a95da
Memory leak was fixed.
DanilKorotenko Aug 23, 2019
bebfeeb
Mount return code made more informative.
DanilKorotenko Aug 23, 2019
be85232
Fixed disc description release.
DanilKorotenko Aug 23, 2019
6b5e96a
Merge commit '23e687f868ed9e084660b8620801413297546fc5'
DanilKorotenko Jul 7, 2020
1090bc6
Code styling.
DanilKorotenko Nov 4, 2020
edbef21
Deployment target was updated to 10.15.
DanilKorotenko Nov 5, 2020
749c775
Switch to automatic signing.
DanilKorotenko Nov 5, 2020
a0c243a
UI tests added.
DanilKorotenko Nov 5, 2020
4713a12
Development team changed.
DanilKorotenko Feb 17, 2023
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
47 changes: 47 additions & 0 deletions Disk ArbitratorUITests/Disk_ArbitratorUITests.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
//
// Disk_ArbitratorUITests.m
// Disk ArbitratorUITests
//
// Created by Danil Korotenko on 11/5/20.
//

#import <XCTest/XCTest.h>

@interface Disk_ArbitratorUITests : XCTestCase

@end

@implementation Disk_ArbitratorUITests

- (void)setUp {
// Put setup code here. This method is called before the invocation of each test method in the class.

// In UI tests it is usually best to stop immediately when a failure occurs.
self.continueAfterFailure = NO;

// In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
}

- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
}

- (void)testExample {
// UI tests must launch the application that they test.
XCUIApplication *app = [[XCUIApplication alloc] init];
[app launch];

// Use recording to get started writing UI tests.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}

- (void)testLaunchPerformance {
if (@available(macOS 10.15, iOS 13.0, tvOS 13.0, *)) {
// This measures how long it takes to launch your application.
[self measureWithMetrics:@[[[XCTApplicationLaunchMetric alloc] init]] block:^{
[[[XCUIApplication alloc] init] launch];
}];
}
}

@end
22 changes: 22 additions & 0 deletions Disk ArbitratorUITests/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
Loading