|
Hi, How would you go about introducing acceptance tests into a team using the .NET framework? What tools are available for this purpose?
Thanks!
Started by Yuval on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is your question not how to introduce Unit testing, which is the sister of Acceptance....
You might want to take a look at FitNesse, which is meant to be a way for Acceptance tests to look to first understand what an acceptance test is.
|
|
If I have unit tests for each class and/or member function and acceptance tests for every user story do I have enough tests to ensure the project functions as expected?
For instance if I have unit tests and acceptance tests for a feature do I still need...
Started by Kenneth Cochran on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Depending on how complete your stories....
Your acceptance tests may be more.
Acceptance tests should cover both good and bad paths, especially in unit tests.
Unit tests should be done by the developers to ensure the units work in isolation .
|
|
What are some decent guides / books / blogs that deal with application acceptance testing? I'm particularly interested in web automation. I'm familiar with some of the frameworks and I'm more interested in the perceptions of "best practices" on the subject...
Started by Russell Myers on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A great wiki-based acceptance testing tool is Fitnesse It is based on an idea attributable to Ward.
|
Ask your Facebook Friends
|
Most gigs I end up at either have little or no unit tests. Typically what are described as the unit tests are actually integration tests and will be rarely run from the developers machine. I usually start my evangelism by preaching the difference between...
Started by MrWiggles on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
As for acceptance testing....
A acceptance test often involves.
The integration test is covering the interaction between several modules .
I completely agree with you regarding acceptance.
Not mean that you application will work correctly.
|
|
Does anyone know of any official studies or reports on user acceptance of the Ribbon UI introduced in Office 2007.
A quick search on the internet turns out individual-biased opinions that cannot be constitute as proper objective studies or reports. For...
Started by David in Dakota on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Now I just wanted to share this little text I found... .
See this for some objective reporting : Office 2007 Ribbon - An Analysis - Last Update July 2009 .
The enormous buzz around the ribbon makes it almost impossible to find data both objective and useful .
|
|
I look for a tool/framework to make automatic acceptance-testing. The interface to create new tests should be so easy, that a non-programmer (customer, boss) will be able to add specifications for which will be tested automatically.
It should be some ...
Started by Mnementh on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
What you ask for appears to be for a very well-defined system with a very specific sets of inputs and a high degree of automation built-into ... .
It is one I have used with success.
Http://fitnesse.org/ appears to meet all of the qualifications you want .
|
|
I am soon to be writing a dissertation as part of my degree course, which is based on enhancing an open source product. The main body of the dissertation will be about my research into how to enhance the product, how I implemented it, and how I evaluated...
Started by Grundlefleck on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Web/csdl/doi/10.1109/HICSS.2007.426
Detecting Patch Submission and Acceptance in OSS Projects.
|
|
We run a few commercial webapps facing customers. The release schedule for them is regular, but there's always worries about testing changes, patches and upgrades. It seems like acceptance testing is promoted for contract development rather than "Commercial...
Started by jldugger on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
There are too many variables....
I'd be interested as well if someone has a more automated solution, but for front-end web applications, nothing beats a human tester with a testing checklist to work through on each platform, browser, and version to be supported .
|
|
I am using simulated annealing to solve an NP-complete resource scheduling problem. For each candidate ordering of the tasks I compute several different costs (or energy values). Some examples are (though the specifics are probably irrelevant to the question...
Started by flodin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, what if the deadline_cost goes down by 0.001, but the global_finish_time cost goes up by 10000? Do you return 1.0, because the deadline_cost decreased, and that takes precedence over anything... .
It depends on what you mean by "takes precedence".
|
|
I'm currently building a web-app for a client who would like to utilise cookies to better shape their traffic, etc, etc, you know the drill.
So at the end of last week I added a simple cookie write (basically set cookie="helloworld") and a cookie read...
Started by annakata on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Does your website utilize any creative form of frames? Are you setting cookies with Javascript and are your users likely to have it enabled? Is the Javascript cross browser... .
I will update the list as I think of more reasons, but these are all possible .
|