mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-10-30 17:29:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			368 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			368 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package serial_test
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"v2ray.com/core/common"
 | |
| 	"v2ray.com/core/common/buf"
 | |
| 	. "v2ray.com/core/common/serial"
 | |
| 	. "v2ray.com/ext/assert"
 | |
| )
 | |
| 
 | |
| func TestUint32(t *testing.T) {
 | |
| 	assert := With(t)
 | |
| 
 | |
| 	x := uint32(458634234)
 | |
| 	s1 := Uint32ToBytes(x, []byte{})
 | |
| 	s2 := buf.New()
 | |
| 	common.Must(s2.AppendSupplier(WriteUint32(x)))
 | |
| 	assert(s1, Equals, s2.Bytes())
 | |
| }
 | 
