-
Notifications
You must be signed in to change notification settings - Fork 26
/
passport_test.go
48 lines (38 loc) · 1.2 KB
/
passport_test.go
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package echotron
import "testing"
func TestPassportElementErrorDataField(_ *testing.T) {
p := PassportElementErrorDataField{}
p.ImplementsPassportElementError()
}
func TestPassportElementErrorFrontSide(_ *testing.T) {
p := PassportElementErrorFrontSide{}
p.ImplementsPassportElementError()
}
func TestPassportElementErrorReverseSide(_ *testing.T) {
p := PassportElementErrorReverseSide{}
p.ImplementsPassportElementError()
}
func TestPassportElementErrorSelfie(_ *testing.T) {
p := PassportElementErrorSelfie{}
p.ImplementsPassportElementError()
}
func TestPassportElementErrorFile(_ *testing.T) {
p := PassportElementErrorFile{}
p.ImplementsPassportElementError()
}
func TestPassportElementErrorFiles(_ *testing.T) {
p := PassportElementErrorFiles{}
p.ImplementsPassportElementError()
}
func TestPassportElementErrorTranslationFile(_ *testing.T) {
p := PassportElementErrorTranslationFile{}
p.ImplementsPassportElementError()
}
func TestPassportElementErrorTranslationFiles(_ *testing.T) {
p := PassportElementErrorTranslationFiles{}
p.ImplementsPassportElementError()
}
func TestPassportElementErrorUnspecified(_ *testing.T) {
p := PassportElementErrorUnspecified{}
p.ImplementsPassportElementError()
}