summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2025-08-10 20:35:36 +0200
committerxengineering <me@xengineering.eu>2025-08-10 20:35:36 +0200
commit0b45492bb3e0da4c1956b25bdc2e3f7c5f3f887b (patch)
treebae5d894073223fb59507472dd806b61da3fbb34
parent98e2c59233f5d590bfc888f5b49a8b9876473f08 (diff)
downloadiot-contact-go-0b45492bb3e0da4c1956b25bdc2e3f7c5f3f887b.tar
iot-contact-go-0b45492bb3e0da4c1956b25bdc2e3f7c5f3f887b.tar.zst
iot-contact-go-0b45492bb3e0da4c1956b25bdc2e3f7c5f3f887b.zip
integration: Rename to TestExecuteDUT()
The old name `TestExecuteFirmware()` was written only for the native sim firmware. Nevertheless this test suite should not differentiate between a real or simulated device. Thus the term `DUT` (device under test) is more appropriate.
-rw-r--r--integration/execution_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/integration/execution_test.go b/integration/execution_test.go
index d1e94b7..82fa2b9 100644
--- a/integration/execution_test.go
+++ b/integration/execution_test.go
@@ -16,7 +16,7 @@ const (
SIMPLE_EXECUTION_TIME_S = 5
)
-func TestExecuteFirmware(t *testing.T) {
+func TestExecuteDUT(t *testing.T) {
firmware := os.Getenv(ENV_NATIVE_SIM_FIRMWARE)
if firmware == "" {
t.Skip("Environment variable '" + ENV_NATIVE_SIM_FIRMWARE + "' not set")