Testing asynchronous methods on iPhone
I tried OCUnit, GTM, and iUnitTest but none of them supports testing for asynchronous methods. How do you test asynchronous methods on iPhone? ...
I tried OCUnit, GTM, and iUnitTest but none of them supports testing for asynchronous methods. How do you test asynchronous methods on iPhone? ...
Hello, We are trying to automate our flex application. After adding automation libraries to our project we get the following exception: TypeError: Error #1009: Cannot access a property or method of a null object reference. at mx.automation::AutomationManager$/addDelegates() at mx.automation::AutomationManager$/addDelegates() at mx.au...
Respected all, As many know testing can be mainly classified into manual and automated testing. With regard to this certain questions come to mind. Hope you can help... They include: What is the basic difference between the two types of testing? What are the elements of challenges involved in both manual and automated testing? What ...
Hi All, I have a listbox whose values are generated dynamically. The list box contains months and years and when generated looks like this. <select name="arr_dtm_mon_year" tabindex="150" class="input"> <option value=""></option> <option value="NOV 09">Nov 09</option> <option value="DEC 09">Dec 09</option> <option valu...
I was looking to create a boolean test for a number when it is 10, 20, 30, 40. This would be used in a loop, 1 to 100. ParseInt seems a bit part but was wondering what a method for a true or false answer maybe. ...
I am trying to use Selenium RC but i keep getting this error whenever i start the server. The command i use is java -jar selenium-server.jar -multiwindow -htmlsuite *iexplore http://localhost/app testsuite.html testsuiteoutfile.html Starting Selenium Server.... 18:14:29.086 INFO - Java: Sun Microsystems Inc. 10.0-b23 18:...
Using shoulda, any ideas how to allow blank when having this test: should validate_uniqueness_of(:email) Thanks. ...
Hi, I have a question about Diehard Testtool. My Random Number Generator doesn't passed monkey test (DNA Test). One p-value was 0. Is this critical? How can I interpret the result? Thank you in advance! ...
I'm using selenium IDE to test my webpages but unfortunately I cannot use it to test those pages that return an xml response. Some people use Selenium Remote Control, others use Pearl modules like WWW::Mechanize and Test::XML or Test::XPath (but these are no option for me since I use Java). What is the best way to test the XML responses...
How long does robotium wait for a new activity to show up? Is it possible to set the timeout manually for the Solo instance? ...
I have heard developers say that people who write code should not be the ones testing it. I am looking for peoples experience in this situation. Many times I have done my share of development, then released to the QA dept and had the code sent back to me becuase some aspect of the application was broken due to my coding, regardless of ho...
Hi, I'm using Visual Studio Team System 2008 to run Load Tests. I have a test that executes a web service request and I would like to know how much time was spent in each layer of my application e.g. Time spent in IIS, Time spent in my Server application Time spent in SQL Server Can I get this sort of information by setting the perf...
How do you test your app for Iñtërnâtiônàlizætiøn compliance? I tell people to store the Unicode string Iñtërnâtiônàlizætiøn into each field and then see if it is displayed correctly on output. --- including output as a cell's content in Excel reports, in rtf format for docs, xml files, etc. What other tests should be done? Added idea...
I have found that DeploymentItem [TestClass(), DeploymentItem(@"TestData\")] is not copying my test data files to the same location when tests are built and run on different machines. The test data files are copied to the "bin\debug" directory in the test project on my machine, but on my friend's machine they are copied to "TestResul...
I worked on a website for which I had a "development URL" that looked something like this: www.example.com.php5-9.dfw1-2.example.com/ Now, several weeks after the website launch, there is at least one page of content indexed on Google with that URL. Question: How do I redirect all requests from that test URL to reroute to the actual ...
Given the following method: (real method has a few more parameters, but the important ones are below...) public string DoSomething(string formatter, params string[] values) { // Do something eventually involving a call to String.Format(formatter, values); } Is there a way to tell if my values array has enough objects in it to cov...
I am having trouble getting my filters/validators to work correctly on my form, so I want to create a Unit test to verify that the data I am submitting to my form is being filtered and validated correctly. I started by auto-generating a PHPUnit test in Zend Studio, which gives me this: <?php require_once 'PHPUnit/Framework/TestCase.php...
here are some additional info ...
Hi, I'm trying to start a load test on a rig. I've got three computers - C1:Visual Studio Team System Test Edition C2:Controller C3:Agent The computers are part of a workgroup (not on a domain), the controller indicates that the agent is ready for testing. My problem is that when I try to run a test (from C1), it gets stuck in pen...
I have the following routes in my app: GET /admin/comments(.:format) {:controller=>"admin/comments", :action=>"index"} admin_comments POST /admin/comments(.:format) {:controller=>"admin/comments", :action=>"create"} new_admin_comment GET /admin/comments/new(.:fo...