aboutsummaryrefslogtreecommitdiffstats
path: root/WireguardTests/WireguardTests.swift
diff options
context:
space:
mode:
authorJeroen Leenarts <jeroen.leenarts@gmail.com>2018-05-23 21:49:10 +0200
committerJeroen Leenarts <jeroen.leenarts@gmail.com>2018-05-23 21:50:42 +0200
commitae73b78935bf26515eccd1609bcf5bea43cb8451 (patch)
tree031d1a06c3e7d7b25a9b246a95ce04c81b756f56 /WireguardTests/WireguardTests.swift
parentInitial commit (diff)
downloadwireguard-apple-ae73b78935bf26515eccd1609bcf5bea43cb8451.tar.xz
wireguard-apple-ae73b78935bf26515eccd1609bcf5bea43cb8451.zip
Initial project setup.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'WireguardTests/WireguardTests.swift')
-rw-r--r--WireguardTests/WireguardTests.swift36
1 files changed, 36 insertions, 0 deletions
diff --git a/WireguardTests/WireguardTests.swift b/WireguardTests/WireguardTests.swift
new file mode 100644
index 0000000..50448b6
--- /dev/null
+++ b/WireguardTests/WireguardTests.swift
@@ -0,0 +1,36 @@
+//
+// WireguardTests.swift
+// WireguardTests
+//
+// Created by Jeroen Leenarts on 23-05-18.
+// Copyright © 2018 Wireguard. All rights reserved.
+//
+
+import XCTest
+@testable import Wireguard
+
+class WireguardTests: 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.
+ }
+ }
+
+}