25 lines
		
	
	
		
			421 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			421 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package micro
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestFromContext(t *testing.T) {
 | 
						|
	ctx := context.WithValue(context.TODO(), serviceKey{}, NewService())
 | 
						|
 | 
						|
	c, ok := FromContext(ctx)
 | 
						|
	if c == nil || !ok {
 | 
						|
		t.Fatal("FromContext not works")
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestNewContext(t *testing.T) {
 | 
						|
	ctx := NewContext(context.TODO(), NewService())
 | 
						|
 | 
						|
	c, ok := FromContext(ctx)
 | 
						|
	if c == nil || !ok {
 | 
						|
		t.Fatal("NewContext not works")
 | 
						|
	}
 | 
						|
}
 |