Tagged Questions
The scenarios tag has no wiki summary.
7
votes
9answers
6k views
Good examples for teaching database design
Does anyone have any good scenarios for teaching relational databases and SQL? All the examples I can find are either trivial or have improbable domain constraints (like full name being unique).
I'm ...
6
votes
2answers
2k views
How to write stories / scenarios in BDD ( Behavior Driven Design )
I am about to use BDD (Behavior Driven Design) for the first time and am trying to get used to this different way of approaching a problem.
Can you give some stories / scenarios that you would ...
4
votes
1answer
105 views
BDD naming: when does it stop being about the user experience?
I'm drawn to MSpec with the hopes of one day sharing my test reports with non-developers*, but that is most valuable (right?) if I discuss the business (the user experience) in the test/scenario names ...
3
votes
5answers
929 views
Multithreading - Avoiding and dealing with database deadlocks
I am looking for a good strategy of dealing with database deadlocks from within a Java 6 application; several parallel threads could, potentially, write into the same table at the same time. The ...
2
votes
1answer
78 views
Where to test links in cucumber features?
Assume that I arranged my cucumber features in files like that:
features/
├── add_project.feature
├── list_projects.feature
In my application on the page where I can list all projects I also have a ...
2
votes
2answers
209 views
Problem creating bioclimatic variables using dismo packages
I would like to get all the bioclimatic variables of future scenarios for species distribution modelling. So I run the "biovars" function in "dismo" packages using the three variables from worldclim ...
2
votes
2answers
172 views
A business scenario that could involve integration of a number of IT systems using JMS?
Can anyone give me some suggestions of a business scenarios where I can implement Java Messaging Services (JMS). The message can be sent either by queue(point-to-point) or topic (regular/durable ...
2
votes
2answers
664 views
UML scenario example
How are scenarios expressed? I think they're linked to use-cases but I'm not sure and I'm seeking some good examples or a document that can serve as a template.
1
vote
2answers
77 views
Cucumber: background fails still exits with code 0
I was wondering about something, cucumber returns an exit code 0 (which means "ok" as far as i know) when a Background fails.
Now failing steps shouldn't probably be in the Background (at best in a ...
1
vote
2answers
58 views
software scenario sequence editor
The project scenario:
Management, engineers, scientists and users contributes their requirements for a piece of software. They contribute gifs, jpegs, pngs, ms presentation files. They specify the ...
1
vote
1answer
184 views
How to get Reports properly by using JBehave?
I am using JBehave to run Scenarios, i have taken an example from WebSite , it is executing properly and generating reports in trarget/jbehave folder.
but the result is showing every time as zero.
(i ...
1
vote
1answer
151 views
JBehave Error in POM! Multiple annotations found..: - Missing artifact org.jbehave:jbehave-core:zip:resources:3.5- SNAPSHOT:compile..etc
I am using JBehave for Scenario Testing.
while using tutorials i am getting error like below in pom.xml
Missing artifact org.jbehave:jbehave-core:zip:resources:3.5-SNAPSHOT:compile
Missing artifact ...
1
vote
1answer
101 views
distributed unit testing/scenario based unit testing with boost.test
I am developing unit test cases for an application using Boost.test libraries. There are certain APIs which can directly be tested.
But, there are APIs which require interaction between test ...
1
vote
1answer
1k views
Standard Documents or Software to write Test Scenarios (or functional tests)
Are there standard documents around to write Test Scenarios (or functional tests/ acceptance tests)? Maybe software to input the scenarios and check them if passed...
Now we use Word or Excel to do ...
1
vote
7answers
2k views
0
votes
3answers
156 views
JBehave & Maven - how to skip scenario tests
I'm using jbehave and the jbehave maven plugin to run a set of scenario tests.
Have my test class extending JUnitStories, and everything works nicely. Only issue is, I can't stop running the tests...
...
0
votes
1answer
41 views
Multiple facets of behavior in one scenario?
I was trying to gain insight into my own problems when I stumbled upon this question. To my understanding, two different functionalities are being expressed and tested (look at the two Whens and two ...
0
votes
1answer
279 views
Case Study Scenarios to Practice Oracle SQL and PLSQL?
Are there any good websites available with Situational Examples of real world,which use some or the Other SQL concepts in Oracle or any other Database.
Main Requirement of my question is: To practice ...
0
votes
2answers
58 views
SRS: how different between Scenarios and Process narrative(UML)
In Software Requirements Specification,
what is the difference between Scenarios and Process Narratives of each function (described using UML)?
I understand that Scenarios are descriptions of a ...
0
votes
3answers
95 views
BDD: How does Baby steps work?
I'm trying to learn about BDD and I've read about baby steps. How do they work? I'm trying to figure it out.
For example, using the following feature:
Feature: Months and days to days
In order to ...
0
votes
0answers
125 views
Recovery Scenario QTP
Since there is no way to programmatically capture errors within QTP script, i tried by implementing recovery scnearios in QTP. I wanted to trigger an email in case any error occurs within the QTP ...
0
votes
1answer
29 views
need help on this scenario , what is standard?
I have the scenario in my online exam asp.net mvc application.
where, as student logged in-> he selects test/Exam -> then load the set of questions.
Now I am populating the questions one by one ...
0
votes
0answers
62 views
Domain Object Modeling Scenario: Objects that both seem to “own” each other
I have some business logic that needs to be modeled, and I have been mulling it around, but can't seem to figure out how this should be done.
The main goal here is to model "budget contracts" and how ...
0
votes
2answers
225 views
LR custom log files: How can I get them from the generator machines?
Suppose I have a VUGen C test which writes results to some data log file, i.e. it lists processed IDs or something like that in a file that is created (or appended) upon init, written to in the main ...
0
votes
1answer
98 views
Used Background for some Scenario
Feature: list video in stored
Background:
Given I have the following videos
| title | format |
| Running Central Park in the Fall ...
0
votes
1answer
422 views
How to write to the SAME excel sheet using JXL API?
I have an excel sheet (located in classpath), which has scenarios to be read and executed.
Once they are executed, I should write back to the SAME excel sheet saying whether the scenario is PASS'ed ...
0
votes
2answers
73 views
LINQ - Need help with a statement/ scenario
Here's the scenario:
Given a List of Outputs each associated with an integer based GroupNumber. For each distinct GroupNumber within the List of Outputs starting with the lowest GroupNumber (1). ...