mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-30 17:29:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			728 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			728 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package assert
 | |
| 
 | |
| import (
 | |
| 	"strconv"
 | |
| )
 | |
| 
 | |
| // Assert on a boolean variable.
 | |
| func (v *Assert) Bool(value bool) *BoolSubject {
 | |
| 	return &BoolSubject{
 | |
| 		Subject: Subject{
 | |
| 			disp: strconv.FormatBool(value),
 | |
| 			a:    v,
 | |
| 		},
 | |
| 		value: value,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| type BoolSubject struct {
 | |
| 	Subject
 | |
| 	value bool
 | |
| }
 | |
| 
 | |
| // to be equal to another boolean variable.
 | |
| func (subject *BoolSubject) Equals(expectation bool) {
 | |
| 	if subject.value != expectation {
 | |
| 		subject.Fail("is equal to", strconv.FormatBool(expectation))
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // to be true.
 | |
| func (subject *BoolSubject) IsTrue() {
 | |
| 	if subject.value != true {
 | |
| 		subject.Fail("is", "True")
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // to be false.
 | |
| func (subject *BoolSubject) IsFalse() {
 | |
| 	if subject.value != false {
 | |
| 		subject.Fail("is", "False")
 | |
| 	}
 | |
| }
 | 
