当前位置: 首页>>代码示例>>Golang>>正文


Golang C.SucceedNow方法代码示例

本文整理汇总了Golang中gopkg/in/check/v1.C.SucceedNow方法的典型用法代码示例。如果您正苦于以下问题:Golang C.SucceedNow方法的具体用法?Golang C.SucceedNow怎么用?Golang C.SucceedNow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gopkg/in/check/v1.C的用法示例。


在下文中一共展示了C.SucceedNow方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: TestGetEmptyArray

func (s *ArrayGroupSuite) TestGetEmptyArray(c *chk.C) {
	res, err := arrayClient.GetEmpty()
	if err != nil {
		c.SucceedNow()
	}
	c.Assert(*res.Value, chk.DeepEquals, []int32{})
}
开发者ID:jhancock93,项目名称:autorest,代码行数:7,代码来源:body-array_test.go

示例2: TestGetIntInvalidNull

// convert null to 0 - Int default value
// {1, null, 0} ---> {1,0,0}
func (s *ArrayGroupSuite) TestGetIntInvalidNull(c *chk.C) {
	res, err := arrayClient.GetIntInvalidNull()
	if err != nil {
		c.SucceedNow()
	}
	c.Assert(*res.Value, chk.DeepEquals, []int32{1, 0, 0})
}
开发者ID:jhancock93,项目名称:autorest,代码行数:9,代码来源:body-array_test.go

示例3: TestGetFloatInvalidNull

// convert null to 0 - Float default value
// {1, null, 0} ---> {1,0,0}
func (s *ArrayGroupSuite) TestGetFloatInvalidNull(c *chk.C) {
	res, err := arrayClient.GetFloatInvalidNull()
	if err != nil {
		c.SucceedNow()
	}
	c.Assert(*res.Value, chk.DeepEquals, []float64{0, 0, -1.2e20})
}
开发者ID:jhancock93,项目名称:autorest,代码行数:9,代码来源:body-array_test.go

示例4: TestGetInvalidDuration

func (s *DurationSuite) TestGetInvalidDuration(c *chk.C) {
	res, err := durationClient.GetInvalid()
	if err != nil {
		c.SucceedNow()
	}
	_, err = time.ParseDuration(*res.Value)
	c.Assert(err, chk.NotNil)
}
开发者ID:jhancock93,项目名称:autorest,代码行数:8,代码来源:body-duration_test.go

示例5: TestParseReference

func (s *PublishSuite) TestParseReference(c *gc.C) {
	addMeta(c, s.branch, "")

	cmd := &publishCommand{}
	cmd.ChangePushLocation(func(location string) string {
		c.Assert(location, gc.Equals, "lp:charms/precise/wordpress")
		c.SucceedNow()
		panic("unreachable")
	})

	_, err := testing.RunCommandInDir(c, modelcmd.Wrap(cmd), []string{"precise/wordpress"}, s.dir)
	c.Assert(err, jc.ErrorIsNil)
	c.Fatal("shouldn't get here; location closure didn't run?")
}
开发者ID:pmatulis,项目名称:juju,代码行数:14,代码来源:publish_test.go

示例6: TestEnsureIndex

func (s *RootKeyStorageSuite) TestEnsureIndex(c *gc.C) {
	keys := mgostorage.NewRootKeys(5)
	err := keys.EnsureIndex(s.coll())
	c.Assert(err, gc.IsNil)

	// This code can take up to 60s to run; there's no way
	// to force it to run more quickly, but it provides reassurance
	// that the code actually works.
	// Reenable the rest of this test if concerned about index behaviour.

	c.SucceedNow()

	_, id1, err := keys.NewStorage(s.coll(), mgostorage.Policy{
		ExpiryDuration: 100 * time.Millisecond,
	}).RootKey()
	c.Assert(err, gc.IsNil)

	_, id2, err := keys.NewStorage(s.coll(), mgostorage.Policy{
		ExpiryDuration: time.Hour,
	}).RootKey()
	c.Assert(err, gc.IsNil)
	c.Assert(id2, gc.Not(gc.Equals), id1)

	// Sanity check that the keys are in the collection.
	n, err := s.coll().Find(nil).Count()
	c.Assert(err, gc.IsNil)
	c.Assert(n, gc.Equals, 2)
	for i := 0; i < 100; i++ {
		n, err := s.coll().Find(nil).Count()
		c.Assert(err, gc.IsNil)
		switch n {
		case 1:
			c.SucceedNow()
		case 2:
			time.Sleep(time.Second)
		default:
			c.Fatalf("unexpected key count %v", n)
		}
	}
	c.Fatalf("key was never removed from database")
}
开发者ID:frankban,项目名称:macaroon-bakery,代码行数:41,代码来源:rootkey_test.go


注:本文中的gopkg/in/check/v1.C.SucceedNow方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。