aboutsummaryrefslogtreecommitdiffstats
path: root/device_test.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-03-03 04:04:41 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-03-03 05:00:40 +0100
commit69f0fe67b63d90e523a5a1241fb1b46c2e8dbe03 (patch)
tree1ef86da3242afde462dcadb7241bb09f499d5bd7 /device_test.go
parenttun: windows: expose GUID (diff)
downloadwireguard-go-69f0fe67b63d90e523a5a1241fb1b46c2e8dbe03.tar.xz
wireguard-go-69f0fe67b63d90e523a5a1241fb1b46c2e8dbe03.zip
global: begin modularization
Diffstat (limited to 'device_test.go')
-rw-r--r--device_test.go48
1 files changed, 0 insertions, 48 deletions
diff --git a/device_test.go b/device_test.go
deleted file mode 100644
index df0ba69..0000000
--- a/device_test.go
+++ /dev/null
@@ -1,48 +0,0 @@
-/* SPDX-License-Identifier: MIT
- *
- * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
- */
-
-package main
-
-/* Create two device instances and simulate full WireGuard interaction
- * without network dependencies
- */
-
-import "testing"
-
-func TestDevice(t *testing.T) {
-
- // prepare tun devices for generating traffic
-
- tun1, err := CreateDummyTUN("tun1")
- if err != nil {
- t.Error("failed to create tun:", err.Error())
- }
-
- tun2, err := CreateDummyTUN("tun2")
- if err != nil {
- t.Error("failed to create tun:", err.Error())
- }
-
- _ = tun1
- _ = tun2
-
- // prepare endpoints
-
- end1, err := CreateDummyEndpoint()
- if err != nil {
- t.Error("failed to create endpoint:", err.Error())
- }
-
- end2, err := CreateDummyEndpoint()
- if err != nil {
- t.Error("failed to create endpoint:", err.Error())
- }
-
- _ = end1
- _ = end2
-
- // create binds
-
-}