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