diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/benchmarks/gettext/gotext.go | 4 | ||||
l--------- | tests/benchmarks/gettext/main.go | 1 | ||||
-rwxr-xr-x | tests/cli-opts.sh | 0 | ||||
-rw-r--r-- | tests/functional/api-usage/gotext.go | 4 | ||||
l--------- | tests/functional/api-usage/main.go | 1 | ||||
-rw-r--r-- | tests/fuzz/api/gotext.go | 4 | ||||
l--------- | tests/fuzz/api/main.go | 1 | ||||
-rw-r--r-- | tests/gotext.go | 4 | ||||
-rwxr-xr-x | tests/integration.sh | 0 | ||||
-rw-r--r-- | tests/main.go | 7 |
10 files changed, 26 insertions, 0 deletions
diff --git a/tests/benchmarks/gettext/gotext.go b/tests/benchmarks/gettext/gotext.go new file mode 100644 index 0000000..36d1327 --- /dev/null +++ b/tests/benchmarks/gettext/gotext.go @@ -0,0 +1,4 @@ +package gotext + +func MainTest() { +} diff --git a/tests/benchmarks/gettext/main.go b/tests/benchmarks/gettext/main.go new file mode 120000 index 0000000..f67563d --- /dev/null +++ b/tests/benchmarks/gettext/main.go @@ -0,0 +1 @@ +../../main.go
\ No newline at end of file diff --git a/tests/cli-opts.sh b/tests/cli-opts.sh new file mode 100755 index 0000000..e69de29 --- /dev/null +++ b/tests/cli-opts.sh diff --git a/tests/functional/api-usage/gotext.go b/tests/functional/api-usage/gotext.go new file mode 100644 index 0000000..36d1327 --- /dev/null +++ b/tests/functional/api-usage/gotext.go @@ -0,0 +1,4 @@ +package gotext + +func MainTest() { +} diff --git a/tests/functional/api-usage/main.go b/tests/functional/api-usage/main.go new file mode 120000 index 0000000..f67563d --- /dev/null +++ b/tests/functional/api-usage/main.go @@ -0,0 +1 @@ +../../main.go
\ No newline at end of file diff --git a/tests/fuzz/api/gotext.go b/tests/fuzz/api/gotext.go new file mode 100644 index 0000000..36d1327 --- /dev/null +++ b/tests/fuzz/api/gotext.go @@ -0,0 +1,4 @@ +package gotext + +func MainTest() { +} diff --git a/tests/fuzz/api/main.go b/tests/fuzz/api/main.go new file mode 120000 index 0000000..f67563d --- /dev/null +++ b/tests/fuzz/api/main.go @@ -0,0 +1 @@ +../../main.go
\ No newline at end of file diff --git a/tests/gotext.go b/tests/gotext.go new file mode 100644 index 0000000..36d1327 --- /dev/null +++ b/tests/gotext.go @@ -0,0 +1,4 @@ +package gotext + +func MainTest() { +} diff --git a/tests/integration.sh b/tests/integration.sh new file mode 100755 index 0000000..e69de29 --- /dev/null +++ b/tests/integration.sh diff --git a/tests/main.go b/tests/main.go new file mode 100644 index 0000000..d42725d --- /dev/null +++ b/tests/main.go @@ -0,0 +1,7 @@ +package main + +import "gotext" + +func main() { + gotext.MainTest() +} |