|
As you develop an application database changes inevitably pop up. The trick I find is keeping your database build in step with your code. In the past I have added a build step that executed SQL scripts against the target database but that is dangerous...
Started by Craig on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
When you release to production, do you of a schema rollback script? Use your... .
You have two choices, embedding named object (such as a table or somesuch) you can test for.
Bogus data?
Version numbers embedded in the database are helpful.
|
|
If I create a test suite for a development project, should those classes be kept under version control with the rest of the project code?
Started by devonmallory on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
People checking out the latest release should be able to unit test the code documentation on how the code ....
Test classes must stay up-to-date they should.
If the interfaces change, necessitating that the tests change?
Absolutely.
|
|
Should the test plan be kept in the version control with the code ? That is, the test plan and the code are put under the same version control system and have the same revision numerating. I am not talking about unit test code, but a test plan document...
Answer Snippets (Read the full thread at stackoverflow):
Some teams use a tool like TestDirector to....
Consistent version sets ? That may make more sense if your version control contains tests documents, they might work well in a document-version-control system of varying formality.
|
Ask your Facebook Friends
|
I'm curious as to what versions of Flash stuff is tested with. How do you manage it across different browsers?
I'm wanting to test things with both swfdec and gnash and hoping maybe there's some way I didn't know about...
Started by mattl on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The Flash Player ....
We target version 8, and testAll the test i run are made over IE 7, Firefox 2 and 3, Safari, Google Chrome and the Stand Alone Player.
You can download previous versions of Flash for testing .
And 10.
|
|
I'm looking for a way to test websites on multiple versions of Firefox. I reckon at a time only one version of Firefox can be setup on each computer? Any help in this regard will be much appreciated! Thanks!
Started by ymasood on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
Http://www.webmonkey.com/blog/Test%5FMultiple%5FFirefox%5FVersions.
I have posted a link below.
MultiFox.
|
|
The standard process for test-driven development seems to be to add a test, see it fail, write production code, see the test pass, refactor, and check it all into source control.
Is there anything that allows you to check out revision x of the test code...
Started by Andrew Grimm on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
version of production code, rebuild it, then run your test code against the newly built/deployedA couple of things:
After refactoring the test, you run the test again Then, you refactor the code, then run the test again....
|
|
How do you usually go about separating your codebase and associated unit tests ? I know people who create a separate project for unit tests, which I personally find confusing and difficult to maintain. On the other hand, if you mix up code and its tests...
Started by petr k. on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at stackoverflow):
Yes, as Gary says, it also forces you to test behavior through public methods rather than project so it compiles....
Exclude it from the shipping version of your in my opinion.
Be a test assembly called "Acme.BillingSystem.Utils.Test".
|
|
I have installed IE8 on my system. I usually test my application on this browser, but the problem arises when i got to know that the client is using IE7. Now how can i test my application on IE7?
One possible solution is to have dual booting on my system...
Started by Rakesh Juyal on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use
http://www.my-debugbar.com/wiki/IETester/HomePage
and here can you see all browser versions as picture
http://browsershots.org/
Microsoft provides a free set of Windows Virtual PC images for testing various versions of....
|
|
I can only have one IE version installed, but I need to make sure that webpages work on various IE versions, how can I do that without other computers?
Started by newbie on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
There's also IETester ( http://www.my-debugbar....
These are time-limited virtual machines, but should suit your needs .
Download the Internet Explorer Application Compatibility VPC Image that you require .
Or set up virtual machines.
You could use Multiple IE.
|
|
I've just started doing some PowerShell scripting, and I'm running into a problem testing variables for a value. I try to run everything with all warnings enabled, especially while I'm learning, in order to catch dumb mistakes. So, I'm using CTPV3 and...
Answer Snippets (Read the full thread at stackoverflow):
Hence, use 'test....
And the existence test is the one obvious that you can use the same mechanism that you would ordinarily use to test for any other file existence.
You're really testing for two things here, existence and value.
|