blob: 155cc774dd73cc015b541e58a1ca0309f91d2374 [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package util
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestIsUniqueStrings(t *testing.T) {
// unique case
listStr := []string{"a", "b", "c"}
assert.Equal(t, true, IsUniqueSlice(listStr))
listInt := []int{1, 2, 3}
assert.Equal(t, true, IsUniqueSlice(listInt))
// non unique case
dupListStr := []string{"a", "a", "c"}
assert.Equal(t, false, IsUniqueSlice(dupListStr))
dupListStr = []string{"a", "b", "a"}
assert.Equal(t, false, IsUniqueSlice(dupListStr))
dupListInt := []int{1, 1, 2, 2}
assert.Equal(t, false, IsUniqueSlice(dupListInt))
}