11 lines
201 B
Go
11 lines
201 B
Go
|
package oonimkall
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestNewCheckInInfoWebConnectivityNilPointer(t *testing.T) {
|
||
|
out := newCheckInInfoWebConnectivity(nil)
|
||
|
if out != nil {
|
||
|
t.Fatal("expected nil pointer")
|
||
|
}
|
||
|
}
|