(t *testing.T)
| 469 | } |
| 470 | |
| 471 | func TestDCE(t *testing.T) { |
| 472 | uuid, err := NewDCESecurity(42, 12345678) |
| 473 | testDCE(t, "NewDCESecurity", uuid, err, 42, 12345678) |
| 474 | uuid, err = NewDCEPerson() |
| 475 | testDCE(t, "NewDCEPerson", uuid, err, Person, uint32(os.Getuid())) |
| 476 | uuid, err = NewDCEGroup() |
| 477 | testDCE(t, "NewDCEGroup", uuid, err, Group, uint32(os.Getgid())) |
| 478 | } |
| 479 | |
| 480 | type badRand struct{} |
| 481 |
nothing calls this directly
no test coverage detected