The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
17 views

Creating Testdata in HTML format for Robot test framework in python

I am trying to use robot test framework. I have some knowledge in python. I read most of the tutorials available online but all the tutorials are explaining some example but when it comes to my work(I ...
6
votes
2answers
216 views

Can I create a custom TestContext timer for UnitTest/LoadTest in Visual Studio?

A few of my UnitTests have a Sleep that is defined in a loop. I want to profile not only each iteration of the test, but the overall time for all iterations, in order to show any non linear scaling. ...
3
votes
1answer
68 views

How to pass data from a UnitTest to a LoadTest?

During my UnitTest, I am creating data that needs to be referenced in future UnitTests. For example: [TestMethod] public void CreateOrder() { Order order = new Order(); int orderNumber = ...
1
vote
1answer
95 views

Please provide a simple test-framework example that uses QuickCheck2

I'm struggling a little to get this basic test-framework example to work with QuickCheck2. I get the following error that is mentioned on the above page, due to the example's use of QuickCheck 1. I ...
1
vote
2answers
46 views

User scenario testing for Java Applications on PC [closed]

I'm looking for a good Testing-Framework for Java GUI Applications. For Android I know Robotium and it would be really cool if there is something similar for Java PC Applications. Example Testcase: ...
3
votes
1answer
130 views

How to make Test-Framework to report about the reason of QuickCheck's fail?

For example I have a testing code like this: import Data.Decimal import Data.Ratio import Data.Word import Test.HUnit import Control.Applicative import Debug.Trace import Test.QuickCheck import ...
1
vote
2answers
44 views

Autowiring in Spring Testcontext framework

I have a integration test which does the following: @ContextConfiguration( locations={..path to xmls..} ) class IntegTestBase{ --- some field initializations; --- } class MyIntegTest extends ...
0
votes
1answer
267 views

Android white box testing

I'm new android testing and for a while I'm using Android test framework to test my code(with the help of ProviderTestCase2, AndroidTestCase, activityinstrumentationtestcase2,etc) I want to know what ...
0
votes
0answers
40 views

TestNG like dependency resolution for ruby

In testNG, it is possible to realize dependencies via annotations and XML. I need similar functionality in ruby. I'm going to write UI tests and now I'm looking for test frameworks which can provide ...
1
vote
1answer
978 views

Write TestCases using PageFactory (Selenium-WebDriver). Advantages?

Is it a good practice to go the PageFactory way when writing testcases in Selenium2? If yes why? To be frank I have never used them when writing test-cases and have not missed it either. But I would ...
1
vote
3answers
330 views

What is a pure in-browser JavaScript test framework? [closed]

I want a unit-test framework for JavaScript which runs in the browser. Not with an external browser-automation system as in Selenium, or a non-browser JS environment, but just one .html which loads ...
2
votes
1answer
830 views

Android Idea test error message: Unable to attach test reporter to test framework android

I'm trying to test an Android app following the instructions here: http://www.jetbrains.com/idea/webhelp/testing-android-applications.html and here ...
1
vote
1answer
248 views

Run all test in file with ReSharper 5.x and VS2010

Is there a way I can tell the R# (5.x) test runner to run all the MSpec specs in the current file? Something like the Ctrl+R + Ctrl+T shortcut of the Visual Studio test runner is what I'm after, be ...
6
votes
4answers
12k views

QTP vs Selenium - Compare

I have an application/product which is created using .net technologies. This product has a GUI, which connects to a DB using a Web API (SOAP on an application server). Majority of the tests are ...
2
votes
5answers
1k views

JUnit Testing for Automated Testing Scripts?

I recently joined this organisation that I am currently working at that has asked me to manage a project to re factor, extend and maintain an existing Automated Testing Framework written in java, ...
2
votes
2answers
30 views

Creating Tests at Runtime

Are there any .NET testing frameworks which allow dynamic creation of tests without having to deal with a hokey Attribute syntax? Something like: foreach (var t in tests) { TestFx.Run(t.Name, ...
5
votes
1answer
759 views

How does TopCoder evaluates code?

If you are familiar with TopCoder you know that your source-code gets a final "grade/points" this depends on time, how many compiles, etc, one of the highest weighted being performance. But how can ...
3
votes
3answers
1k views

Use rspec to test C/C++ program

Is Rspec ruby/rails specific? Is it possible to use it as a test framework for C/C++ program?