mirror of
https://github.com/Toxblh/MTMR.git
synced 2026-01-10 17:08:39 +00:00
1. Have similar template brightness/space/volume/time 2. Volume buttons work but without visual a status in macos 3. Brightness don't work, but should :) 4. Time don't work Soon will be: 1. Work time 2. Set in strip the app for popover 3. Need find how simulate real buttons for brightness and volume
37 lines
966 B
Swift
37 lines
966 B
Swift
//
|
|
// MTMRTests.swift
|
|
// MTMRTests
|
|
//
|
|
// Created by Anton Palgunov on 16/03/2018.
|
|
// Copyright © 2018 Anton Palgunov. All rights reserved.
|
|
//
|
|
|
|
import XCTest
|
|
@testable import MTMR
|
|
|
|
class MTMRTests: XCTestCase {
|
|
|
|
override func setUp() {
|
|
super.setUp()
|
|
// Put setup code here. This method is called before the invocation of each test method in the class.
|
|
}
|
|
|
|
override func tearDown() {
|
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
super.tearDown()
|
|
}
|
|
|
|
func testExample() {
|
|
// This is an example of a functional test case.
|
|
// Use XCTAssert and related functions to verify your tests produce the correct results.
|
|
}
|
|
|
|
func testPerformanceExample() {
|
|
// This is an example of a performance test case.
|
|
self.measure {
|
|
// Put the code you want to measure the time of here.
|
|
}
|
|
}
|
|
|
|
}
|