aboutsummaryrefslogtreecommitdiffstats
path: root/WireguardTests
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--WireguardTests/Info.plist22
-rw-r--r--WireguardTests/WireguardTests.swift36
2 files changed, 58 insertions, 0 deletions
diff --git a/WireguardTests/Info.plist b/WireguardTests/Info.plist
new file mode 100644
index 0000000..6c40a6c
--- /dev/null
+++ b/WireguardTests/Info.plist
@@ -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>BNDL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>1.0</string>
+ <key>CFBundleVersion</key>
+ <string>1</string>
+</dict>
+</plist>
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.
+ }
+ }
+
+}