From 37a12713f0257e058c8d773ce572a5184b2acc34 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Sat, 25 Jun 2022 16:20:08 +0100 Subject: [PATCH] add output factory test --- voicemeeter/outputs_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 voicemeeter/outputs_test.go diff --git a/voicemeeter/outputs_test.go b/voicemeeter/outputs_test.go new file mode 100644 index 0000000..7beedd7 --- /dev/null +++ b/voicemeeter/outputs_test.go @@ -0,0 +1,15 @@ +package voicemeeter + +import ( + "testing" + + "github.com/stretchr/testify/assert" +) + +func TestGetOutputs(t *testing.T) { + //t.Skip("skipping test") + __o := newOutputs("strip", 0) + t.Run("Should return an output type", func(t *testing.T) { + assert.NotNil(t, __o) + }) +}