Kaydet (Commit) 0f0f0d8c authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Add NORMSINV test

Change-Id: I0acdc5012a89d90cab6b30fe26b321d956982586
üst 328ddd21
......@@ -16,6 +16,7 @@
#include "calcoptionsdlg.hxx"
#include "docfunc.hxx"
#include "docsh.hxx"
#include "interpre.hxx"
#include "sc.hrc"
#include "scresid.hxx"
#include "scopetools.hxx"
......@@ -622,6 +623,12 @@ IMPL_LINK( ScCalcOptionsDialog, TestClickHdl, PushButton*, )
return (nArg == 0);
}));
xTestDocument->addTest(UnOp("NormSInv", "NORMSINV", 0, 1, 3e-10,
[] (double nArg)
{
return ScInterpreter::gaussinv(nArg);
}));
xTestDocument->addTest(Reduction("Sum", "SUM", 100, 0, -1000, 1000, 3e-10,
[] (double nAccum, double nArg)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment