Skip to content

Commit

Permalink
devops: add FormatByteSlice tests
Browse files Browse the repository at this point in the history
Signed-off-by: Marko Kungla <marko@mkungla.dev>
  • Loading branch information
mkungla committed Nov 21, 2023
1 parent 2ff012b commit eee4f8a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions nfcsdk_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Copyright 2023 The Happy Authors
// Licensed under the Apache License, Version 2.0.
// See the LICENSE file.

package nfcsdk_test

import (
"testing"

"github.com/happy-sdk/nfcsdk/internal/helpers"
)

func TestFormatByteSlice(t *testing.T) {
// Test case 1: An empty byte slice should return an empty string.
emptySlice := []byte{}
result := helpers.FormatByteSlice(emptySlice)
expected := ""
if result != expected {
t.Errorf("Expected '%s', but got '%s'", expected, result)
}

// Test case 2: A byte slice with some data should be formatted as expected.
dataSlice := []byte{72, 101, 108, 108, 111} // ASCII values for "Hello"
result = helpers.FormatByteSlice(dataSlice)
expected = "48:65:6C:6C:6F" // Hexadecimal representation of ASCII values
if result != expected {
t.Errorf("Expected '%s', but got '%s'", expected, result)
}
}

0 comments on commit eee4f8a

Please sign in to comment.