fit

Fitnesse for Delphi 2006 / Delphi 2007 /Delphi 2009

Is there a version of Fitnesse that works on Delphi 2006/2007/2009 ? If so where can I find It? Are there any other programs like Fitnesse that work on Delphi 2006 ? ...

Start seleniumRC from Fitnesse

I'm trying to integrate running Fitnesse tests from MSBuild im my nightly build on TFS. In an attempt to make it self contained I would like to start the seleniumRC server only when it's needed from fitness. I've seen that there is a "Command Line Fixture" but it's written in java can I use that? ...

SSRS report fit in PDF

Hi, What is the best way to make the SSRS reporr fit in to PDF page. Thanks, Anna ...

Why Fit/FitNesse?

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. 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? Update So it's totally suitable for business-rules tests only? ...

how to make child divs always fit inside parent div?

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? Below is sample markup/styles demonstrating my issue. If you load it into browser you will see that #two and #three both ex...

fitting parameters of ODEs while using octave/matlab ODE solver

I am using OdePkg in Octave to solve a system of stiff ODEs, e.g. by ode5r: 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) ...

Floating point precision in FIT tests

Are there any good/best practices for dealing with floating point values when checking results with the fit framework? 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 ...

Fitnesse Framework regular expressions possible?

Hi all, Is there an easy way in Fitnesse to check cells based on regex patterns? This should work for all the possible fixtures like "query table", "decision table" and so on. E.g. if results(rows) are returned from a query table it should be possible to match certain cells (columns) against a regex, not just a fixed string. I guess you...

how can I find the parameters of matrix-equation in matlab?

Dear All, I hope somebody here can help me with my problem. I have matrix equation below: [M] = [A][R] + [B][L] where: A and B = 2 by 2 matrices M, R, L, and = 2 by 1 matrix. To estimate one specific value of A and B, I have 9 different data of [M], [R], and [L]. Let's say that these 9 data is one-group, and I have hundreds of gro...

The ol' fitting squares into a rectangle trick

Yes I did see the questions similar to this already posted here (notably this one). But. Am i crazy, or can the size of the square also be a non-integer? For example, in a 2x3 rectangle, one solution is squares that are .2x.2 How can i create a function to find the number of possible square sizes? ...

Fitnesse framework very slow when folder depth is greater 4 - why?

hi all, we are currently establishing fitnesse as the testing tool user acceptance testing. so far everything is good. we are using the java version "20091121". we are having troubles with folders that are deeper than 4. we have setup the following folder structure SetUp TestSuite content.txt + properties.xml (just "!cont...

fitnesse framework, "output captured" takes ages until it appears on screen. after multiple runs...

hi all, i am wondering if other users already had the same issues. after tests have been run multiple times (guess ~30 times) the little "output captured" button takes ages until it appears on screen. the test ran normally (results at the top of the page are fine) but the page takes roundabout 30 more seconds until it finished loading a...

fitnesse test framework, arbitrary properties for test and queries/test runs based on them?

hi, our testers have the requirement to store multiple properties for a test that are not present in the "properties". e.g. they want to store priority, a description(not in the wiki page itself) and so on. they don't want to use the tagging mechanism. is there a way to store any kind of new xml node in the properties.xml for a test?...

print css: fit in one page

Hi. In my page there's only one image. Kind of 1500x3000 px. In the printer, I need that this image's maximum width to be the width of the page, so I did: width 100% in the css, and it works. But the height... the old bullshit of height 100% will never work. Because it always will be 100% of the parent container, then someone must have...

ToolStripButtons BackGround property problem in winform.

My goal is totally fit image in toolStripButton and toolStripDropDownButton. If a image in the button set with image property, I can not totally fit the image in the button. Because of margin, border, or something of the button.(I don't know exactly). So I try to set the image in the button with BackgroudImage property. After I adjust ...

polynomial surface fit numpy

I have had that problem before and I couldn't solve it how do I fit a 2d surface z=f(x,y) with a polynomial in numpy (full crossterms). Thanks in advance, Wolfgang ...

Looking for JavaScript Math library

Is there any JavaScript or jQuery plugin Math Library with polynomial fit routines? ...

How should one import large amounts of data for FIT/Fitnesse tests?

We have a scheduling engine with large amounts of test data to test all the scenarios, so test automation is critical. We're currently hoping to use FIT/Fitnesse. However a single test has quite a large table of test data, so it doesn't fit very well into the mould of "two or three inputs, one or more outputs" that Fitnesse uses in its e...

Make an image fit in a rectangle.

Hi, If I have an image of which I know the height and the width, how can I fit it in a rectangle with the biggest possible size without stretching the image. Pseudo code is enough (but I'm going to use this in Java). Thanks. So, based on the answer, I wrote this: but it doesn't work. What do I do wrong? double imageRatio = bi.getH...

WPF: How to autosize Path to its container?

I have a Path that must resize to its StackPanel container. <StackPanel x:Name="TrackSurface"> <Path Fill="AliceBlue" Stroke="Black" StrokeThickness="1" Data="{StaticResource TranslateZ}"> </Path> </StackPanel> I think about using a transformation bound to the container but don't know how to it actually. Ca...