-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLinuxMain.swift
42 lines (41 loc) · 1.99 KB
/
LinuxMain.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import XCTest
@testable import ServerTests
XCTMain([
testCase(HealthCheckTests.allTests),
testCase(AccountAuthenticationTests_Dropbox.allTests),
testCase(AccountAuthenticationTests_Facebook.allTests),
testCase(AccountAuthenticationTests_Google.allTests),
testCase(DatabaseModelTests.allTests),
testCase(FailureTests.allTests),
testCase(FileController_DoneUploadsTests.allTests),
testCase(FileController_UploadTests.allTests),
testCase(FileControllerTests.allTests),
testCase(FileControllerTests_GetUploads.allTests),
testCase(FileControllerTests_UploadDeletion.allTests),
testCase(FileController_MultiVersionFiles.allTests),
testCase(GeneralAuthTests.allTests),
testCase(GeneralDatabaseTests.allTests),
testCase(GoogleDriveTests.allTests),
testCase(FileDropboxTests.allTests),
testCase(MessageTests.allTests),
testCase(Sharing_FileManipulationTests.allTests),
testCase(SharingAccountsController_CreateSharingInvitation.allTests),
testCase(SharingAccountsController_RedeemSharingInvitation.allTests),
testCase(SpecificDatabaseTests.allTests),
testCase(SpecificDatabaseTests_SharingInvitationRepository.allTests),
testCase(SpecificDatabaseTests_Uploads.allTests),
testCase(SpecificDatabaseTests_UserRepository.allTests),
testCase(UserControllerTests.allTests),
testCase(VersionTests.allTests),
testCase(FileController_DownloadAppMetaDataTests.allTests),
testCase(FileController_UploadAppMetaDataTests.allTests),
testCase(FileController_FileGroupUUIDTests.allTests),
testCase(SpecificDatabaseTests_SharingGroups.allTests),
testCase(SpecificDatabaseTests_SharingGroupUsers.allTests),
testCase(SharingGroupsControllerTests.allTests),
testCase(SharingAccountsController_GetSharingInvitationInfo.allTests),
testCase(MockStorageTests.allTests),
testCase(MockStorageLiveTests.allTests),
testCase(AccountAuthenticationTests_Microsoft.allTests),
testCase(FileMicrosoftOneDriveTests.allTests)
])