github.com/gdamore/mangos@v1.4.0/transport/inproc/inproc_test.go (about) 1 // Copyright 2018 The Mangos Authors 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use file except in compliance with the License. 5 // You may obtain a copy of the license at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package inproc 16 17 import ( 18 "testing" 19 20 "nanomsg.org/go-mangos/test" 21 ) 22 23 var tt = test.NewTranTest(NewTransport(), "inproc://testname") 24 25 func TestInpListenAndAccept(t *testing.T) { 26 tt.TestListenAndAccept(t) 27 } 28 29 func TestInpDuplicateListen(t *testing.T) { 30 tt.TestDuplicateListen(t) 31 } 32 33 func TestInpConnRefused(t *testing.T) { 34 tt.TestConnRefused(t) 35 } 36 37 func TestInpSendRecv(t *testing.T) { 38 tt.TestSendRecv(t) 39 } 40 41 func TestInpSchem(t *testing.T) { 42 tt.TestScheme(t) 43 } 44 45 func TestInp(t *testing.T) { 46 tt.TestAll(t) 47 }