(t *testing.T)
| 104 | } |
| 105 | |
| 106 | func TestValue(t *testing.T) { |
| 107 | stringTest := "f47ac10b-58cc-0372-8567-0e02b2c3d479" |
| 108 | uuid := Must(Parse(stringTest)) |
| 109 | val, _ := uuid.Value() |
| 110 | if val != stringTest { |
| 111 | t.Error("Value() did not return expected string") |
| 112 | } |
| 113 | } |