作者 yangfu

rand task

@@ -6,6 +6,7 @@ import ( @@ -6,6 +6,7 @@ import (
6 "opp/protocol" 6 "opp/protocol"
7 "reflect" 7 "reflect"
8 "testing" 8 "testing"
  9 + "time"
9 ) 10 )
10 11
11 func Test_GenMessage(t *testing.T) { 12 func Test_GenMessage(t *testing.T) {
@@ -39,3 +40,17 @@ func Benchmark_GenMessage(b *testing.B) { @@ -39,3 +40,17 @@ func Benchmark_GenMessage(b *testing.B) {
39 } 40 }
40 } 41 }
41 } 42 }
  43 +
  44 +func Test_RandTask(t *testing.T){
  45 + time :=time.Now().Unix()
  46 + num :=1
  47 + for i:=1;i<=num;i++{
  48 + r :=time%2
  49 + if r==0{
  50 + t.Log("xh","yf",time)
  51 + }
  52 + if r==1{
  53 + t.Log("yf","xh",time)
  54 + }
  55 + }
  56 +}