diff --git a/test/controls_errors.h b/test/controls_errors.h index 5bed56a7..4cae04f0 100644 --- a/test/controls_errors.h +++ b/test/controls_errors.h @@ -1,12 +1,12 @@ // 11 june 2019 checkErrorCase(uiRegisterControlType(NULL, p->vtablePlaceholder, p->osVtablePlaceholder, p->implDataSizePlaceholder), - "TODO") + "uiRegisterControlType(): invalid null pointer for uiControlOSVtable") checkErrorCase(uiRegisterControlType(p->namePlaceholder, NULL, p->osVtablePlaceholder, p->implDataSizePlaceholder), - "TODO") + "uiRegisterControlType(): invalid null pointer for uiControlVtable") checkErrorCase(uiRegisterControlType(p->namePlaceholder, p->vtableBadSize, p->osVtablePlaceholder, p->implDataSizePlaceholder), - "TODO") + "uiRegisterControlType(): wrong size 1 for uiControlVtable") // TODO individual methods checkErrorCase(uiRegisterControlType(p->namePlaceholder, p->vtablePlaceholder, NULL, p->implDataSizePlaceholder), - "TODO") + "uiRegisterControlType(): invalid null pointer for uiControlOSVtable") // OS vtable sizes are tested per-OS