github.com/avicd/go-utilx@v0.1.0/tokx/tags_test.go (about)

     1  package tokx
     2  
     3  import (
     4  	"fmt"
     5  	"testing"
     6  )
     7  
     8  func TestParseTags(t *testing.T) {
     9  	obj := ParseTags("INT;PRIMARY_KEY;AUTO_INCREMENT;NOT NULL;sdfds:")
    10  	fmt.Printf("%v\n", obj)
    11  }