mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-18 05:22:11 +00:00
41 lines
536 B
Swift
41 lines
536 B
Swift
import Foundation
|
|
import XCTest
|
|
import SecretKit
|
|
@testable import SecretAgentKit
|
|
|
|
class AgentTests: XCTestCase {
|
|
|
|
func testEmptyStores() {
|
|
let agent = Agent(storeList: SecretStoreList())
|
|
}
|
|
|
|
func testRequestTracer() {
|
|
// Request tracer should show for Xcode?
|
|
}
|
|
|
|
func testWitnessObjection() {
|
|
|
|
}
|
|
|
|
func testWitnessSignature() {
|
|
|
|
}
|
|
|
|
func testIdentitiesList() {
|
|
|
|
}
|
|
|
|
func testSignature() {
|
|
|
|
}
|
|
|
|
func testSignatureException() {
|
|
|
|
}
|
|
|
|
func testUnhandledAdd() {
|
|
|
|
}
|
|
|
|
}
|