1
vote
4answers
109 views
How can I automate a series of tests in Perl?
i, I have to run about a 100 tests on my program and doing it one-by-one is killing my time bad so I am looking to write a script.
I write an individual test like so
./program te …
0
votes
3answers
107 views
Strict alternation in the C programming language (from Tanenbaum)
Why isn't the test in strict alternation for the first entrance for process 0 while ( turn == 0) //then enter
How can process 0 enter while (turn != 0), is'nt this the same as whi …
1
vote
6answers
71 views
Automated Testing Approach
Hi,
We write a lot of integration tests that work quite well for us, we did attempt to introduce unit testing but found it more difficult to introduce as it took longer and the be …
3
votes
3answers
61 views
Why mock HttpContext if it can be constructed?
Hi,
I have always been faking/mocking/stubbing HttpContext somehow in ASP.NET (much easier in ASP.NET MVC/MonoRail).
But I can see that HttpContext itself can be constructed ea …
1
vote
6answers
198 views
How to test java code?
I've recently starting learning java web development and I want to learn/understand:
What constitutes good java test good? For example, if there is back-end java code that valida …
1
vote
2answers
46 views
How should I stress test my web application?
I've got a somewhat complex web application, containing Flash and javascript on the client side and PHP functionality server side. The PHP functionality contains system calls (exec …
5
votes
4answers
127 views
Patterns for making c++ code easy to test
Should you design your code to make testing easier? And if so how to design c++ code so that it is easy to test.
How do you apply dependency-injection in c++?
Should I implement …
1
vote
3answers
15 views
ASP.Net Testing Suite?
I'm in the process of researching testing options for .Net development particularly ASP.Net.
What testing tools do you swear by? NUnit, Selenium, RhinoMocks are my current apps in …
0
votes
2answers
34 views
can anyone please suggest me a good test effort estimation template
hello,
I am looking for test effort estimation template...Please share with me if anyone have good template.
0
votes
3answers
49 views
Testing /Quality assurance framework
Hi fellas!
At my work place I have been assigned to write a "testing framework" more like a testing/quality assurance methodology for our software. Now as an organisation we don' …
0
votes
2answers
17 views
Free Tool for Validating 2 Databases
I want a free tool for verification all table data between 2 mysql databases ?
is there any free tool available on Linux
0
votes
2answers
35 views
Variable Passing in Rails Controller Tests
I am doing some controller testing with RSpec and Mocha. Here is an example
describe MenuItemsController, "creating a new menu item" do
integrate_views
fixtures :menu_items
…
3
votes
4answers
64 views
Shoulda + FactoryGirl: Can I make my tests faster?
I'm looking for a way to speed up my Shoulda + FactoryGirl tests.
The model I'm trying to test (StudentExam) has associations to other models. These associated objects must exist …
0
votes
0answers
18 views
Selenium IDE 1.0.2 in Firefox 3.5 on Mac
I've tried installing Selenium IDE from their website. The newest version - 1.0.2 - installs fine. After restarting Firefox, I go to "Tools" > "Selenium IDE", and this window open …
4
votes
4answers
106 views
Haskell IO Testing
I've been trying to figure out if there is already an accepted method for testing file io operations in Haskell, but I have yet to find any information that is useful for what I am …
