From 7015a9d7a2dc8e136bab6eb1c058fb841b8aacdf Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Mon, 9 Feb 2026 14:38:13 -0600 Subject: [PATCH] move tests to sub folders --- internal/framer/{ => test}/framer_test.go | 0 internal/framer/{ => test}/raw_test.go | 0 internal/framer/{ => test}/separator_test.go | 0 internal/framer/{ => test}/slip_test.go | 0 internal/processor/{ => test}/artnet-packet-filter_test.go | 0 internal/processor/{ => test}/debug-log_test.go | 0 internal/processor/{ => test}/float-parse_test.go | 0 internal/processor/{ => test}/int-parse_test.go | 0 internal/processor/{ => test}/int-random_test.go | 0 internal/processor/{ => test}/json-decode_test.go | 0 internal/processor/{ => test}/json-encode_test.go | 0 internal/processor/{ => test}/processor_test.go | 0 internal/processor/{ => test}/script-expr_test.go | 0 internal/processor/{ => test}/script-js_test.go | 0 internal/processor/{ => test}/string-create_test.go | 0 internal/processor/{ => test}/string-decode_test.go | 0 internal/processor/{ => test}/string-encode_test.go | 0 internal/processor/{ => test}/string-filter_test.go | 0 internal/processor/{ => test}/string-split_test.go | 0 internal/processor/{ => test}/time-sleep_test.go | 0 internal/processor/{ => test}/uint-parse_test.go | 0 internal/processor/{ => test}/uint-random_test.go | 0 22 files changed, 0 insertions(+), 0 deletions(-) rename internal/framer/{ => test}/framer_test.go (100%) rename internal/framer/{ => test}/raw_test.go (100%) rename internal/framer/{ => test}/separator_test.go (100%) rename internal/framer/{ => test}/slip_test.go (100%) rename internal/processor/{ => test}/artnet-packet-filter_test.go (100%) rename internal/processor/{ => test}/debug-log_test.go (100%) rename internal/processor/{ => test}/float-parse_test.go (100%) rename internal/processor/{ => test}/int-parse_test.go (100%) rename internal/processor/{ => test}/int-random_test.go (100%) rename internal/processor/{ => test}/json-decode_test.go (100%) rename internal/processor/{ => test}/json-encode_test.go (100%) rename internal/processor/{ => test}/processor_test.go (100%) rename internal/processor/{ => test}/script-expr_test.go (100%) rename internal/processor/{ => test}/script-js_test.go (100%) rename internal/processor/{ => test}/string-create_test.go (100%) rename internal/processor/{ => test}/string-decode_test.go (100%) rename internal/processor/{ => test}/string-encode_test.go (100%) rename internal/processor/{ => test}/string-filter_test.go (100%) rename internal/processor/{ => test}/string-split_test.go (100%) rename internal/processor/{ => test}/time-sleep_test.go (100%) rename internal/processor/{ => test}/uint-parse_test.go (100%) rename internal/processor/{ => test}/uint-random_test.go (100%) diff --git a/internal/framer/framer_test.go b/internal/framer/test/framer_test.go similarity index 100% rename from internal/framer/framer_test.go rename to internal/framer/test/framer_test.go diff --git a/internal/framer/raw_test.go b/internal/framer/test/raw_test.go similarity index 100% rename from internal/framer/raw_test.go rename to internal/framer/test/raw_test.go diff --git a/internal/framer/separator_test.go b/internal/framer/test/separator_test.go similarity index 100% rename from internal/framer/separator_test.go rename to internal/framer/test/separator_test.go diff --git a/internal/framer/slip_test.go b/internal/framer/test/slip_test.go similarity index 100% rename from internal/framer/slip_test.go rename to internal/framer/test/slip_test.go diff --git a/internal/processor/artnet-packet-filter_test.go b/internal/processor/test/artnet-packet-filter_test.go similarity index 100% rename from internal/processor/artnet-packet-filter_test.go rename to internal/processor/test/artnet-packet-filter_test.go diff --git a/internal/processor/debug-log_test.go b/internal/processor/test/debug-log_test.go similarity index 100% rename from internal/processor/debug-log_test.go rename to internal/processor/test/debug-log_test.go diff --git a/internal/processor/float-parse_test.go b/internal/processor/test/float-parse_test.go similarity index 100% rename from internal/processor/float-parse_test.go rename to internal/processor/test/float-parse_test.go diff --git a/internal/processor/int-parse_test.go b/internal/processor/test/int-parse_test.go similarity index 100% rename from internal/processor/int-parse_test.go rename to internal/processor/test/int-parse_test.go diff --git a/internal/processor/int-random_test.go b/internal/processor/test/int-random_test.go similarity index 100% rename from internal/processor/int-random_test.go rename to internal/processor/test/int-random_test.go diff --git a/internal/processor/json-decode_test.go b/internal/processor/test/json-decode_test.go similarity index 100% rename from internal/processor/json-decode_test.go rename to internal/processor/test/json-decode_test.go diff --git a/internal/processor/json-encode_test.go b/internal/processor/test/json-encode_test.go similarity index 100% rename from internal/processor/json-encode_test.go rename to internal/processor/test/json-encode_test.go diff --git a/internal/processor/processor_test.go b/internal/processor/test/processor_test.go similarity index 100% rename from internal/processor/processor_test.go rename to internal/processor/test/processor_test.go diff --git a/internal/processor/script-expr_test.go b/internal/processor/test/script-expr_test.go similarity index 100% rename from internal/processor/script-expr_test.go rename to internal/processor/test/script-expr_test.go diff --git a/internal/processor/script-js_test.go b/internal/processor/test/script-js_test.go similarity index 100% rename from internal/processor/script-js_test.go rename to internal/processor/test/script-js_test.go diff --git a/internal/processor/string-create_test.go b/internal/processor/test/string-create_test.go similarity index 100% rename from internal/processor/string-create_test.go rename to internal/processor/test/string-create_test.go diff --git a/internal/processor/string-decode_test.go b/internal/processor/test/string-decode_test.go similarity index 100% rename from internal/processor/string-decode_test.go rename to internal/processor/test/string-decode_test.go diff --git a/internal/processor/string-encode_test.go b/internal/processor/test/string-encode_test.go similarity index 100% rename from internal/processor/string-encode_test.go rename to internal/processor/test/string-encode_test.go diff --git a/internal/processor/string-filter_test.go b/internal/processor/test/string-filter_test.go similarity index 100% rename from internal/processor/string-filter_test.go rename to internal/processor/test/string-filter_test.go diff --git a/internal/processor/string-split_test.go b/internal/processor/test/string-split_test.go similarity index 100% rename from internal/processor/string-split_test.go rename to internal/processor/test/string-split_test.go diff --git a/internal/processor/time-sleep_test.go b/internal/processor/test/time-sleep_test.go similarity index 100% rename from internal/processor/time-sleep_test.go rename to internal/processor/test/time-sleep_test.go diff --git a/internal/processor/uint-parse_test.go b/internal/processor/test/uint-parse_test.go similarity index 100% rename from internal/processor/uint-parse_test.go rename to internal/processor/test/uint-parse_test.go diff --git a/internal/processor/uint-random_test.go b/internal/processor/test/uint-random_test.go similarity index 100% rename from internal/processor/uint-random_test.go rename to internal/processor/test/uint-random_test.go