Smoke testing exercises basic functionality of a system, in order to provide some assurance that the system does not fail catastrophically.
0
votes
1answer
39 views
MVC4: List of all urls available on the site?
We have quite a large MVC4 application and we would like to have Selenium go through every page and make sure it loads - some sort of smoke test.
I can use reflection to go through the assembly, ...
0
votes
1answer
52 views
CodedUI Declare [TestMethod] At Run Time
I have a fairly large Coded UI test and have set up each task in its own .cs class file. The main objective of the test is to check that objects have loaded on various pages in a browser. The test is ...
0
votes
0answers
43 views
Dif between Sanity, SMoke , Regression and BVT [closed]
Can anyone explain the diff between Sanity, Smoke, Regression and Build Verification Testing?
1
vote
3answers
112 views
How to do a smoke Test and Acceptance test in a Javascript Aplication?
I want to do a smoke test in order to test the connection between my web app and the server itself. Does Someone know how to do it? In addition I want to do an acceptance tests to test my whole ...
2
votes
1answer
105 views
Smoke Testing and Monkey Testing in ABAP
How can i do smoke and monkey testing in ABAP? Are there tools for that ?
0
votes
0answers
98 views
Issue with smoke.js script
I am using smoke.js to open a confirm dialog box after a form is submitted, and for some reason the form still submits without you choosing submit or cancel.
You can demo the contact form on my site ...
1
vote
3answers
518 views
Given When Then Testing - Do I NEED a “When”?
I am implementing some smoke tests to our website.
I'm using a Given/When/Then format for existing automated acceptance tests/User stories. But now I want to do an initial smoke test of:
Given I'm ...
0
votes
1answer
129 views
What's the simplest/easier way to do a health check/smoke test in an internal web app?
I have an intranet web application and I would like to do a simple health check/smoke that runs once an hour to make sure that everything is how it is supposed to be.
The tests are supposed to do ...
4
votes
1answer
325 views
Is it possible to deploy Visual Studio Coded UI Tests to Azure or EC2 as Test Agents?
I'm not that entirely familiar with the testing suite that comes with Visual Studio 2010 (Ultimate) but I'm trying to find a means to produce something similar to Selenium Grid with the Coded UI ...
7
votes
1answer
648 views
What is the best way to smoke test a staging/production environment in Rails
First, the setup...
I am currently developing a Rails3 application on Mac OS X using Ruby 1.8.7 MRI, running tests and local dev against a mysql database. I have 3 "other" non-local environments that ...
1
vote
1answer
220 views
Automating Instruments for Mac OS X?
We're interested to see if we can include Instruments-based leak testing as a part of our regular application smoke testing. What kind of scriptability is available for Instruments?
1
vote
3answers
507 views
Why are “smoke tests” called “smoke tests”? [duplicate]
Possible Duplicate:
What is a smoke testing and what will it do for me?
Why are "smoke tests" called "smoke tests"? I don't get this at all. What does smoke have to do with it?
0
votes
1answer
145 views
Is possible to run some Unit Tests as smoke tests from an .aspx?
In my project we use UnitTests (MsTest). We run them manually and in the build script.
But for some environments where we deploy manually.
We are in the need of having some smoke tests. At the moment ...
4
votes
7answers
1k views
Smoke testing a .NET web application
I cannot believe I'm the first person to go through this thought process, so I'm wondering if anyone can help me out with it.
Current situation: developers write a web site, operations deploy it. ...
0
votes
2answers
369 views
WPF: writing smoke tests using ViewModels
I am considering to write smoke tests for our WPF application. The question that I am faced is: should we use UI automation( or some other technology that creates a UI script), or is it good enough to ...
2
votes
3answers
875 views
Automatically smoke test all webpages in application, after deployment
After I deploy a build to staging. I would like to have a system that smoke tests all our webpages looking for error http status codes (400,500).
What is the easiest, fastest way to get a system ...
-3
votes
1answer
168 views
what are the different testings like DST, Wanem…?
can anybody explain the what are the different testings like DST,Wanem.
0
votes
2answers
523 views
Automated smoke testing of a WPF App?
We've got a WPF app we'd like to run automated smoke tests on it. Simple tests like load document, save document, etc, etc. I was wondering if anyone could suggest existing frame works or applications ...
2
votes
3answers
212 views
How complex should smoke tests be?
So we've been running a daily build on our current project for a lot of months at this point. The smoke tests that goes along with that daily build isn't very complex, though - we run a few nUnit ...
14
votes
7answers
5k views
What is a smoke testing and what will it do for me?
I thought I understood that a smoke server was used for continous integration to measure the performance and test coverage of a project. Is this basically correct? What does it mean to smoke-test a ...
5
votes
8answers
2k views
Are regression tests the entire test suite or a sample of tests?
I was taught that a regression test was a small (only enough to prove you didn't break anything with the introduction of a change or new modules) sample of the overall tests. However, this article by ...
3
votes
8answers
540 views