()
| 43 | } |
| 44 | |
| 45 | func NewModelAlt() Model { |
| 46 | m := Model{} |
| 47 | m.Name = "Orm Benchmark" |
| 48 | m.Title = "Just a Benchmark for fun" |
| 49 | m.Fax = "99909990" |
| 50 | m.Web = "http://blog.milkpod29.me" |
| 51 | m.Age = 100 |
| 52 | m.Right = true |
| 53 | m.Counter = 1000 |
| 54 | |
| 55 | return m |
| 56 | } |
| 57 | |
| 58 | // Model for Godb, Dbr |
| 59 | type Model2 struct { |
no outgoing calls
no test coverage detected