26 lines
		
	
	
		
			474 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			474 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package registry
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/micro/go-micro/v3/registry/memory"
 | |
| 	"github.com/micro/go-micro/v3/router"
 | |
| )
 | |
| 
 | |
| func routerTestSetup() router.Router {
 | |
| 	r := memory.NewRegistry()
 | |
| 	return NewRouter(router.Registry(r))
 | |
| }
 | |
| 
 | |
| func TestRouterClose(t *testing.T) {
 | |
| 	r := routerTestSetup()
 | |
| 
 | |
| 	if err := r.Close(); err != nil {
 | |
| 		t.Errorf("failed to stop router: %v", err)
 | |
| 	}
 | |
| 	if len(os.Getenv("IN_TRAVIS_CI")) == 0 {
 | |
| 		t.Logf("TestRouterStartStop STOPPED")
 | |
| 	}
 | |
| }
 |