コード例 #1
0
ファイル: api_test.go プロジェクト: dedis/cothority
func NewTestIdentity(cothority *onet.Roster, majority int, owner string, local *onet.LocalTest) *Identity {
	id := NewIdentity(cothority, majority, owner)
	id.Client = local.NewClient(ServiceName)
	return id
}
コード例 #2
0
ファイル: cosi_test.go プロジェクト: dedis/cothority
func NewTestClient(l *onet.LocalTest) *Client {
	return &Client{Client: l.NewClient(ServiceName)}
}
コード例 #3
0
ファイル: api.go プロジェクト: dedis/cothority
// NewLocalClient takes a LocalTest in order
func NewLocalClient(local *onet.LocalTest) *Client {
	return &Client{Client: local.NewClient("Skipchain")}
}
コード例 #4
0
ファイル: api_test.go プロジェクト: dedis/cothority
func NewTestClient(l *onet.LocalTest) *Client {
	c := NewClient()
	c.Client = l.NewClient("Skipchain")
	return c
}