mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
14 lines
165 B
Go
14 lines
165 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestContainsCi(t *testing.T) {
|
||
|
|
||
|
if ContainsCi("foo bar", "BaR") != true {
|
||
|
t.Error("An unexpected error occured.")
|
||
|
}
|
||
|
|
||
|
}
|