mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 12:40:15 -05:00
Fix SetProperty and add unit test.
This commit is contained in:
parent
15d215e49d
commit
bf9aa098bb
@ -78,7 +78,7 @@ func (p *Package) SetProperty(key, value string) {
|
||||
// then add the specieid key-value property.
|
||||
i := 0
|
||||
for _, prop := range p.Properties {
|
||||
if key == prop.Name {
|
||||
if key != prop.Name {
|
||||
p.Properties[i] = prop
|
||||
i++
|
||||
}
|
||||
|
@ -1,6 +1,10 @@
|
||||
package gtr
|
||||
|
||||
import "testing"
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/google/go-cmp/cmp"
|
||||
)
|
||||
|
||||
func TestTrimPrefixSpaces(t *testing.T) {
|
||||
tests := []struct {
|
||||
@ -24,3 +28,15 @@ func TestTrimPrefixSpaces(t *testing.T) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestSetProperty(t *testing.T) {
|
||||
pkg := Package{}
|
||||
pkg.SetProperty("a", "b")
|
||||
pkg.SetProperty("c", "d")
|
||||
pkg.SetProperty("a", "e")
|
||||
|
||||
want := []Property{{Name: "c", Value: "d"}, {Name: "a", Value: "e"}}
|
||||
if diff := cmp.Diff(want, pkg.Properties); diff != "" {
|
||||
t.Errorf("SetProperty got unexpected diff: %s", diff)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user