github.com/biogo/biogo@v1.0.4/seq/quality/quality_test.go (about)

     1  // Copyright ©2013 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 quality
     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("\nTest included only to force build on go test.\n") }