2023-09-06 10:52:01 +00:00
|
|
|
// Copyright (C) 2023 The Syncthing Authors.
|
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
package sliceutil_test
|
|
|
|
|
|
|
|
import (
|
2024-02-10 20:02:42 +00:00
|
|
|
"slices"
|
2023-09-06 10:52:01 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/syncthing/syncthing/lib/sliceutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestRemoveAndZero(t *testing.T) {
|
|
|
|
a := []int{1, 2, 3, 4, 5}
|
|
|
|
b := sliceutil.RemoveAndZero(a, 2)
|
|
|
|
exp := []int{1, 2, 4, 5}
|
|
|
|
if !slices.Equal(b, exp) {
|
|
|
|
t.Errorf("got %v, expected %v", b, exp)
|
|
|
|
}
|
|
|
|
for _, e := range a {
|
|
|
|
if e == 3 {
|
|
|
|
t.Errorf("element should have been zeroed")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|