| 1234567891011121314151617181920212223242526272829303132333435363738 | package unitimport (	"bytes"	"fmt")type BytesSubject struct {	*Subject	value []byte}func NewBytesSubject(base *Subject, value []byte) *BytesSubject {	subject := new(BytesSubject)	subject.Subject = base	subject.value = value	return subject}func (subject *BytesSubject) Named(name string) *BytesSubject {	subject.Subject.Named(name)	return subject}func (subject *BytesSubject) Fail(verb string, other []byte) {	otherString := fmt.Sprintf("%v", other)	subject.FailWithMessage("Not true that " + subject.DisplayString() + " " + verb + " <" + otherString + ">.")}func (subject *BytesSubject) DisplayString() string {	return subject.Subject.DisplayString(fmt.Sprintf("%v", subject.value))}func (subject *BytesSubject) Equals(expectation []byte) {	if !bytes.Equal(subject.value, expectation) {		subject.Fail("is equal to", expectation)	}}
 |