github.com/biogo/biogo@v1.0.4/concurrent/conc_test.go (about) 1 // Copyright ©2011-2012 The bíogo Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package concurrent 6 7 import ( 8 "testing" 9 10 "gopkg.in/check.v1" 11 ) 12 13 // Tests 14 func Test(t *testing.T) { check.TestingT(t) } 15 16 type S struct{} 17 18 var _ = check.Suite(&S{}) 19 20 func (s *S) TestWarning(c *check.C) { c.Log("\nFIXME: Tests only in examples.\n") }