1.描述测试流程
2.三角形例子
翻译:
In the CIS,when a user has stored ot orderson a pt,they can no longer go into order transcription there is a warning message generaated “Exiting”;
This patient has orders created with the OMS application . use OMS application for this patient And if the user goes into a Flowsheet and presses the new order key ,they are presented with the OE categories menu either OT or OE and from the flowsheet when they pick new order they are presented with the OT categories.
In the CCOW standard aource,the user has ability to sdect a patient that is not ‘known’ winCIS,In this case,the winCIS should unsdect the patient and return the user to the patient control screen,If charting was done and has not yet been stored ,a warning should be displayed so the winCIS user can save the change before unselecting the pt and displaying the patient control screen.
In your opinion,what kind of role does software test play in the whole process of software development? and why.
please translate the following paragraphs into english
A 1.选择一病人,进入notes应用程序,在该应用程序下至少需要显示两个notes.
2.选中任何一个notes,再单击俄Edit note按钮。
3.在打开的 note编辑页中,单击prew或NEXT按钮,当弹出Validation Dialog 后,单击cancel
4.这时页面内容为空,按钮不可用
我想正确情形应该:保存原来编辑页面不变
1.进入wincis后,单击max rightpance 按钮。
2.打开view菜单,请注意菜单的第一项内容为three panes与工具栏上显示的第一个按钮一样。
3.这时选择refresh patcctrl
4.再次打开view菜单,请注意菜单的第一项内容为Max Rightpance,与工具栏上显示的第1个按钮不一样了,但命令功能还是同时显示3个窗格。
main(){
inta,b
a=5,b=3
a=f1(a,b)
printf(“a=%d,b=%d”,a,b)
b=f2(a,b)
printf(“a=%d,b=%d”,a,b)
f3(&a,&b);
pintf(“a=%d,b=&d”,a,b)
}
int f1(int a,b){
b++
return(a++);
}
int f2(int a,int b){
a++;
return (a++);
}
void f3 (int *a,int*b){
(*a)++;
(*b)++;
}