I am using jQuery 1.4.1 and here is a simple code.
buildCol1: function() {
var col = $('<select />', {className: 'col1' }).append($('<option />'));
return $('<td />').append(col);
},
I am using qunit . In this case the method call is returning a jquery element. Since I am writing a test I should have something like
s = "<td><sele...
Hello,
I'm using Microsoft Enterprise Validation. But in this case the test passes, even if i assign null value to that attribute. Why?
[NotNullValidator(MessageTemplate = "Cannot be null!", Ruleset="validate_x")]
[StringLengthValidator(10, RangeBoundaryType.Inclusive, 40, RangeBoundaryType.Inclusive, Ruleset="validate_x")]
...
I've created a singleton which in the constructor goes like this:
public static class MyCertificate
{
private readonly static X509Certificate2 _singletonInstance = new X509Certificate2();
static MyCertificate()
{
if(_singletonInstance == null)
_singletonInstance = GetMyCertificateFromDatabase();
}
...
I want to start strictly doing Test-Driven-Development. However, I was wondering how much I should test methods generated by Moose and MooseX::FollowPBP. For example, I have the following class:
package Neu::Series;
use Moose;
use MooseX::FollowPBP;
use File::Find::Wanted;
has 'file_regex' => (
isa=>'RegexpRef',
is=>'rw',
...
We're using WatiN to test our web portals. During the course of an E2E test, we'll occasionally see client-side script errors on the IE status bar. I'd like to chain a handler onto the script error event and record the error for later analysis and bug filing.
Problem is, I don't know that there's a global script error event or how to ...
How do you lower the mimic low bandwidth settings for testing HTML rendering on slow computers? I'm using Safari 4 on a Mac.
...
I watched old videos that suggest to test the asp.net website load using
Microsoft Web Application Stress Tool.
But there is a broken link to get the download.
Can any body suggest me a tool to test website performance?
...
Hello.
I want test my application server with WCAT
My script:
NEW TRANSACTION
classId = 1
NEW REQUEST HTTP
Verb = "GET"
URL = "http://192.168.0.250/Pharmacy.aspx"
192.168.0.250 - is Aplication server with IIS 6.0
Runs controller.
C:\Program Files\IIS Resources\WCAT Controller>wcctl -a 192.168.0.250 -c config.
ubr -s script....
Are there any free tools for Java (preferably Eclipse) that can give metrics on both how frequently code is executed (based on a recorded run) and do a side by side with coverage? I'm not sure if there is already a metric for measuring this but it seems it would be an interesting one to see.
...
I'm currently working on a project with some fairly significant business rules where the problem space is being 'discovered' as we are writing the solution (pretty typical chaotic project management kind of thing). We have decent test coverage & rely on them quite a bit to make sure our signficant changes don't blow anything up. This sce...
I am currently selling time based access passes to an online service at micro payment prices.
After payment the customer gets a set of credentials that is only valid for the purchased period. When the access pass expires the customer has to buy a new set of credentials.
So basically the credentials are one-time(period) use only.
I wo...
Hay I am using IE Tester for browser compatibility, but its only for Internet explorer. Is there any Browser Compatibility Tool for all most all commonly used browsers.
...
Is there a free IE addon, that analyses the page load of websites?
I look for the following meaures:
Download time for each page element (images, etc)
Problems/errors for each page element (such as access denied)
...
I've created a simple custom timer job for Sharepoint by using the template i found here: http://saftsack.fs.uni-bayreuth.de/~dun3/archives/visual-studio-2005-project-template-for-sharepoint-2007-timer-jobs/142.html
I've deployed and activated the timerJob successfully. Then I've decided to add a few lines of code to the job to see whet...
Requirements Testing is an important area of testing. We can find Explicit Requirements from System Requirements Specification, but what to do with Implicit Requirements? There could be numerous scenarios even for a Login Screen. Can we bind/use Q-Patterns to cover implicit requirements?
Do you guys have some other solution for this?
...
I want to get longitude and latitude in android emulator for testing.
Can any one guide me how to achieve this?
How do I set the location of the emulator to a test position?
...
I tried to automate an application available under Citrixl Program Neightbourhood using QTP 9.5, but QTP does not identify the objects inside the application. Can we automate citrix application using QTP?
What are different tools available to perform automation testing on Citrix applications?
...
Website security testing is an imp area of testing. How can we ensure the penetration of important info from HTTP request bucket?
There are many tools which can show us http request bucket but how can we ensure penetration from it ?
What should be techniques to test this area ?
...
I'm developing a card-game in Ruby on Rails, and trying to work out how best to test it.
When a player joins a game, their Player object is stored in the session. Obviously, in order for the game to work, I need more than one Player in a game at once. Since sessions are the same for different tabs in one browser, I'm currently testing ...
I have been trying with the below update links.
But they are not working.
Is there any latest plugin available?
http://js-test-driver.googlecode.com/svn/tags/1.2
http://js-test-driver.googlecode.com/svn/update/
...