oleaut32/tests: Add some tests.

This commit is contained in:
André Hentschel 2010-02-24 19:09:22 +01:00 committed by Alexandre Julliard
parent 5415b62fc2
commit da519c603b
1 changed files with 2 additions and 0 deletions

View File

@ -389,6 +389,8 @@ static void test_VarFormat(void)
VARFMT(VT_R8,V_R8,0.0995,"#.##",S_OK,".1");
VARFMT(VT_R8,V_R8,8.0995,"#.##",S_OK,"8.1");
VARFMT(VT_R8,V_R8,0.0994,"#.##",S_OK,".1");
VARFMT(VT_R8,V_R8,1.00,"#,##0.00",S_OK,"1.00");
todo_wine VARFMT(VT_R8,V_R8,0.0995,"#.###",S_OK,".1");
/* 'out' is not cleared */