Add test file dummies

This commit is contained in:
Thomas Boerger
2019-09-20 09:23:05 +02:00
parent 3e03fca45f
commit c25c0324ee
10 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package assets
import (
"testing"
)
func TestAssets(t *testing.T) {
t.Skip()
}

View File

@@ -0,0 +1,9 @@
package command
import (
"testing"
)
func TestHealth(t *testing.T) {
t.Skip()
}

9
pkg/command/root_test.go Normal file
View File

@@ -0,0 +1,9 @@
package command
import (
"testing"
)
func TestRoot(t *testing.T) {
t.Skip()
}

View File

@@ -0,0 +1,9 @@
package command
import (
"testing"
)
func TestServer(t *testing.T) {
t.Skip()
}

View File

@@ -0,0 +1,9 @@
package config
import (
"testing"
)
func TestConfig(t *testing.T) {
t.Skip()
}

View File

@@ -0,0 +1,9 @@
package metrics
import (
"testing"
)
func TestMetrics(t *testing.T) {
t.Skip()
}

View File

@@ -0,0 +1,9 @@
package static
import (
"testing"
)
func TestStatic(t *testing.T) {
t.Skip()
}

View File

@@ -0,0 +1,9 @@
package header
import (
"testing"
)
func TestHeader(t *testing.T) {
t.Skip()
}

View File

@@ -0,0 +1,9 @@
package debug
import (
"testing"
)
func TestDebug(t *testing.T) {
t.Skip()
}

View File

@@ -0,0 +1,9 @@
package server
import (
"testing"
)
func TestServer(t *testing.T) {
t.Skip()
}