2015-12-02 09:27:18 -05:00
|
|
|
package assert
|
2015-09-09 08:51:26 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
2015-12-02 09:27:18 -05:00
|
|
|
func Int(value int) *IntSubject {
|
|
|
|
return &IntSubject{value: value}
|
|
|
|
}
|
|
|
|
|
2015-09-09 08:51:26 -04:00
|
|
|
type IntSubject struct {
|
|
|
|
*Subject
|
|
|
|
value int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) Named(name string) *IntSubject {
|
|
|
|
subject.Subject.Named(name)
|
|
|
|
return subject
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) Fail(verb string, other int) {
|
|
|
|
subject.FailWithMessage("Not true that " + subject.DisplayString() + " " + verb + " <" + strconv.Itoa(other) + ">.")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) DisplayString() string {
|
|
|
|
return subject.Subject.DisplayString(strconv.Itoa(subject.value))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) Equals(expectation int) {
|
|
|
|
if subject.value != expectation {
|
|
|
|
subject.Fail("is equal to", expectation)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) GreaterThan(expectation int) {
|
|
|
|
if subject.value <= expectation {
|
|
|
|
subject.Fail("is greater than", expectation)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (subject *IntSubject) LessThan(expectation int) {
|
|
|
|
if subject.value >= expectation {
|
|
|
|
subject.Fail("is less than", expectation)
|
|
|
|
}
|
|
|
|
}
|