initial commit
[govpp.git] / vendor / github.com / onsi / gomega / matchers / matcher_tests_suite_test.go
1 package matchers_test
2
3 import (
4         "testing"
5
6         . "github.com/onsi/ginkgo"
7         . "github.com/onsi/gomega"
8 )
9
10 type myStringer struct {
11         a string
12 }
13
14 func (s *myStringer) String() string {
15         return s.a
16 }
17
18 type StringAlias string
19
20 type myCustomType struct {
21         s   string
22         n   int
23         f   float32
24         arr []string
25 }
26
27 func Test(t *testing.T) {
28         RegisterFailHandler(Fail)
29         RunSpecs(t, "Gomega Matchers")
30 }