A client has a piece of hardware - it doesn't really matter what it does. 150 of them can connect to a PC and up to 150 PCs can interface to the single server. These are his figures and I and not sure if I want to query them.
At his premises he has a largish room with 150 h/w devices mounted on the walls - and testing consists of a lot ...
I have created a web test in vs2010. which browse through the products.
I have 3 roles in my site guest (non logged in ), logged in not verified, logged in verified.
How I can use single test for all 3 roles?
...
I don't even really know if the title is the best way to explain what I'm trying to do, but anyway...
We have a web app that is being ported to a number of DB backends via MDB2. Our unit tests are pretty lacking at the moment, but our internal users are pretty good at knowing what to test to see if things are broken.
What I'm 'imaginin...
I am refereing to this url:
http://blogs.msdn.com/billbar/articles/529874.aspx
I have couple of questions about the vsts load test database scheme:
How the data is inserted in the table: WebLoadTestRequestMap ?
I do not see any stored procedure doing the insert in this table?
I am trying to figure out what is 'RequestId' column m...
I'm in the process of testing an application that takes mail out of a mailbox, performs some action based on the content of that mail, and then sends a response mail depending on the result of the action.
I'm looking for a way to write tests for this application. Ideally, I'd like for these tests to bring up their own mail server, push...
The pImpl idiom in c++ aims to hide the implementation details (=private members) of a class from the users of that class.
However it also hides some of the dependencies of that class which is usually regarded bad from a testing point of view.
For example if class A hides its implementation details in Class AImpl which is only accessibl...
Hi,
I'm looking for an HTTP Proxy/GUI combination that should be installed locally on my Windows PC. The UI should display something similar to Firebugs "Network" tab, showing request/response headers and content as plaintext.
It would be cool if I could attach requests to different 'nodes' for later comparison, similar to what you can...
I'm in the process of writing a python module that includes some samples. These samples aren't unit-tests, and they are too long and complex to be doctests. I'm interested in best practices for automatically checking that these samples run.
My current project layout is pretty standard, except that there is an extra top level makefile th...
The auto-generated test page displays HTTP POST as option when viewed from local machine but not remotely.
Why?
How do I get it to display HTTP POST as an option?
...
Before going into production, our client demands actual numbers of how many users our web application can handle.
We have all kinds of features implemented including asset management (file uploads/downloads), documents import/export, various statistics, web-services etc.
I guess we need tool which could emulate users form submission be...
I have a site set up using CakePHP and MySQL and I want to work on a test database without disrupting my live site in case something goes wrong.
I have another busy site, but my test site runs off the live database which can be occasionally nerve wracking.
What do I do if I change a table name in the test db and I want it changed in th...
I have e very specific test setup in mind.
I would like to start a web-browser that understands Javascript and can use HTTP proxy, point it to a URL (ideally by specifying it in the command line along with the proxy config), wait for the page to load while listening (in the proxy) requests are generated as web-page is rendered and Javasc...
I'm a c# developer in a medium/small company. I use to do quick test of the apps that my workmates made and they use to test my applications. We test each form based in our experience. (yes, I know this is not a very formal method)
Now a new guy without experience are going to join our team. We think now is the momento to make a little ...
I'm using SqlCacheDependency in asp.net application, and i'm using HttpRuntime.Cache to cache items. and the application works well only when i debug the web application, but the HttpRuntime.Cache will not be notified when some data changes from the db when i debug the application in the unit test mode.
Anyone have suggestions to make H...
Our team is now working on a big Swing application. Our job basically focuses on writing extensions to the existing framework. A typical job would be adding a new panel/ or adding a new tab with some extra functionalities that suit our need.
It seems FEST can help a lot in terms of unit-test our code. I am going to try it out this week...
We've got MediaWiki 1.13.2 and we'll soon be upgrading to the latest & greatest version (probably 1.16). We've got lots of extensions installed (for which we'll probably also need to get the latest versions) and we've done some minor configuring (e.g. adding new edit buttons).
What should we watch out for during the upgrade? And what ...
Hi,
How to test the SSIS Packages ? what are the things should be taken care while testing
the ssis packages? what are the testcase steps should be written while testing ?
regards,
kumar
...
I am working on one web application , It's related to machine translation support
i.e. which takes source text for translation and translated in to user specified language
Currently it's in unit testing phase.
Here, i want to check that, whether my machine translation feature is fully working for all the special characters.
Because of ...
In a large company that does software development, they often have dedicated teams for build management, testing, development, and so forth.
Agile or not, how does this workflow amongst teams work? I mean would the test team write unit tests and then the dev team write code to adhere to these tests (basically TDD)? And then the test tea...
(ia32) for example,
test $eax, $eax
why would you ever want to do that? it does $eax & $eax, right? shouldn't this always set the flag register to say that they are equal..?
addendum:
so test will set the ZF (as mentioned below) if the register is zero. so is test (as used above) mainly just used to tell if a register is empty? and Z...