active questions tagged fit - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:11:45Z http://stackoverflow.com/feeds/tag/fit http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1659811/floating-point-precision-in-fit-tests 2 Floating point precision in FIT tests jens 2009-11-02T07:03:17Z 2009-11-07T05:15:42Z <p>Are there any good/best practices for dealing with floating point values when checking results with the fit framework? </p> <p>Our application does many calculations. In most situations checking values a precision of more than 6 or 8 digits does not make any sense. So I would like to specify the precision that are used when comparing expected and actual values.</p> <p>My brute force solution would be to set a precision value and then compare values in my ColumnFixture containing the test cases. </p> <p>This would result in something like:</p> <p>!|info.fitnesse.fixturegallery.ColumnFixtureTest| |firstSummand|secondSummand|precision|expectedResult|calculateSumAndCheck()| |2.1|3.3|0.0001|5.3|true|</p> <p>The major drawback of this approach would be that I would not be able to use the compare features of fit but write my own ones. </p> http://stackoverflow.com/questions/91826/fitnesse-for-delphi-2006-delphi-2007-delphi-2009 4 Fitnesse for Delphi 2006 / Delphi 2007 /Delphi 2009 Charles Faiga 2008-09-18T11:46:16Z 2009-09-01T16:58:43Z <p>Is there a version of Fitnesse that works on Delphi 2006/2007/2009 ?</p> <p>If so where can I find It?</p> <p>Are there any other programs like Fitnesse that work on Delphi 2006 ?</p> http://stackoverflow.com/questions/1164198/fitting-parameters-of-odes-while-using-octave-matlab-ode-solver 0 fitting parameters of ODEs while using octave/matlab ODE solver SimonSalman 2009-07-22T09:50:51Z 2009-08-26T19:02:20Z <p>I am using OdePkg in Octave to solve a system of stiff ODEs, e.g. by ode5r:</p> <pre><code>function yprime = myODEs(t,Y,param) yprime = [ - param(1) * Y(1); # ODE for Y(1) param(1) * Y(1) - param(2) Y(2) * Y(3); # ODE for Y(2) param(2) Y(2) * Y(3) # ODE for Y(3) # etc. ]; time_span = [1, 24] # time span of interest Y0 = [1.0, 1.1, 1.3] # initial values for dependent variables Y param = [7.2, 8.6, 9.5] # parameters, to be optimized [t, Y] = ode5r(@myODEs, time_span, Y0, ..., param); </code></pre> <p>The solver stores the dependent variables Y in a matrix with respect to time t (vector):</p> <pre><code>t Y(1) Y(2) Y(3) 0.0 1.0 1.1 1.3 0.1 ... ... ... 0.5 ... ... ... 0.9 ... ... ... ... ... ... ... 4.0 ... ... ... ... ... ... ... 24.0 ... ... ... </code></pre> <p>I want to fit the parameters in param, so that the resulting variables Y best fit my reference values, e.g.:</p> <pre><code>t Y(1) Y(2) Y(3) 0.5 1.1 N/A N/A 1.0 1.9 N/A N/A 4.0 2.3 2.7 2.1 5.0 N/A 2.6 2.2 24.0 0.9 1.5 2.0 </code></pre> <p>Which Octave/Matlab (other languages are welcome) routine can <strong>perform a multi-parameter (least square / spline) fit</strong>? How is it possible to <strong>combine parameter sets for different initial values</strong> Y0 in the fit? I would be glad if you could provide me with some hints and possibilities.</p> <p>Best regards, Simon</p> http://stackoverflow.com/questions/1098219/how-to-make-child-divs-always-fit-inside-parent-div 0 how to make child divs always fit inside parent div? Tim Sheiner 2009-07-08T13:51:56Z 2009-07-16T19:55:59Z <p>My question is if there is a way, without using javascript, to cause child divs to extend to the borders of their parent, without exceeding those borders, when you cannot know beforehand the size of the parent div?</p> <p>Below is sample markup/styles demonstrating my issue. If you load it into browser you will see that #two and #three both extend outside their parent, #one, and cause scrollbars to appear. </p> <p>My issue is not so much the scrollbars, but that I do not know how to tell the child divs to occupy the width or height remaining to them, rather than the full height or width of the parent. </p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;style&gt; html, body {width:100%;height:100%;margin:0;padding:0;} .border {border:1px solid black;} .margin { margin:5px;} #one {width:100%;height:100%;} #two {width:100%;height:50px;} #three {width:100px;height:100%;} &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="one" class="border"&gt; &lt;div id="two" class="border margin"&gt;&lt;/div&gt; &lt;div id="three" class="border margin"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p></p> http://stackoverflow.com/questions/598863/why-fit-fitnesse 9 Why Fit/FitNesse? Artem Tikhomirov 2009-02-28T23:11:41Z 2009-04-05T21:12:55Z <p>What's the point of using Fit/FitNesse instead of xUnit-style integration tests? It has really strange and very unclear syntax in my opinion.</p> <p>Is it really only to make product owners write tests? They won't! It's too complicated for them. So why should anyone Fit/FitNesse?</p> <p><strong>Update</strong> So it's totally suitable for business-rules tests only?</p> http://stackoverflow.com/questions/317743/ssrs-report-fit-in-pdf 0 SSRS report fit in PDF anna 2008-11-25T15:38:57Z 2008-12-22T20:33:20Z <p>Hi,</p> <p>What is the best way to make the SSRS reporr fit in to PDF page.</p> <p>Thanks, Anna </p> http://stackoverflow.com/questions/100216/start-seleniumrc-from-fitnesse 1 Start seleniumRC from Fitnesse HAXEN 2008-09-19T07:20:08Z 2008-09-23T08:51:29Z <p>I'm trying to integrate running Fitnesse tests from MSBuild im my nightly build on TFS.</p> <p>In an attempt to make it self contained I would like to start the seleniumRC server only when it's needed from fitness.</p> <p>I've seen that there is a "Command Line Fixture" but it's written in java can I use that?</p>