File: seq_test.go

package info (click to toggle)
golang-github-biogo-biogo 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 5,332 kB
  • sloc: sh: 282; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 878 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright ©2011-2013 The bíogo Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package seq_test

import (
	"github.com/biogo/biogo/seq"
	"github.com/biogo/biogo/seq/alignment"
	"github.com/biogo/biogo/seq/linear"
	"github.com/biogo/biogo/seq/multi"

	"testing"

	_ "gopkg.in/check.v1" // Necessary to squelch complaints when testing ./biogo/... verbosely.
)

func TestSeq(t *testing.T) {
	var (
		_ seq.Sequence = (*linear.Seq)(nil)
		_ seq.Sequence = (*linear.QSeq)(nil)
		_ seq.Sequence = (*alignment.Row)(nil)
		_ seq.Sequence = (*alignment.QRow)(nil)

		_ seq.Scorer = (*linear.QSeq)(nil)
		_ seq.Scorer = (*alignment.QRow)(nil)

		_ seq.Rower = (*alignment.Seq)(nil)
		_ seq.Rower = (*alignment.QSeq)(nil)
		_ seq.Rower = (*multi.Multi)(nil)
		_ seq.Rower = (*multi.Set)(nil)
	)
}