(c *C)
| 258 | } |
| 259 | |
| 260 | func (s *S) TestComponentSetDataError(c *C) { |
| 261 | _, err := s.engine.LoadString("file.qml", "Item{}") |
| 262 | c.Assert(err, ErrorMatches, "file:.*/file.qml:1 Item is not a type") |
| 263 | } |
| 264 | |
| 265 | func (s *S) TestComponentCreateWindow(c *C) { |
| 266 | data := ` |
nothing calls this directly
no test coverage detected