()
| 20 | } |
| 21 | |
| 22 | func newStool() *Stool { |
| 23 | stool := new(Stool) |
| 24 | |
| 25 | stool.Id = 1 |
| 26 | stool.Id2 = 2 |
| 27 | stool.Legs = 3 |
| 28 | stool.Material = "Stainless Steel" |
| 29 | stool.Ignored = "Boo" |
| 30 | |
| 31 | return stool |
| 32 | } |
| 33 | |
| 34 | type ActRec struct { |
| 35 | Id int `stbl:"id,SERIAL,PRIMARY_KEY"` |
no outgoing calls
no test coverage detected