Not yet registered? Try Yulup with a free account!
Yulup Logo

Quick Start Guide

The First Project

At the overview of your projects click "Add project":

Add project

Give a clear, distinctive name to your project. And if you like, you can fill in a meaningful description as well. The other fields of the form are not really important at the moment. So you can leave them empty and just add the project.

Basic settings for a new project

This brings up the dashboard of your newly created project. It shows an aggregated view of the most important things of the project. You can have a look at the dashboard of a public demo project for an Automated Teller Machine (ATM).

Table of Contents

Let's Begin with the Specification

"As one makes his bed, so he must lie."

As we all know, this old saying fits especially well for IT projects, too: The specification forms the basement for a successful implementation. That is why Yulup accompanies you and all the other members of your team for the whole duration of your project: from the beginning of the concept phase and also while doing maintenance.

Now go to the section for the "Specification" - if you would like you can have a look at the corresponding section of the project for the cash machine.

If you are familiar with the editor and its add-ons specifically done for Yulup, feel free to start straight away writing your first Personas.


The Editor

The editor that is integrated into Yulup helps writing Personas, User Stories, and BDD Scenarios. For sure you know similar editors from using Office applications or other web based tools.

With the editor it is possible — of course — to display text sections in bold or italic and to insert images or lists. But it is also capable of handling comments or code snippets.

Table of Contents

Comments

Place the cursor at the position where you want to insert a comment. Alternatively you select a section of text that you want to comment on.

Now you can create a comment using the icon for comments within the tool bar.

Insert a comment: Use the icon within the tool bar.
Insert a comment: Use the icon within the tool bar.

It is also possible to use the function in the menu 'Insert'.

Insert a comment: Use the function in the menu 'Insert'.
Insert a comment: Use the function in the menu 'Insert'.

A comment referring to the section 'maintenance executive'.
A comment referring to the section "maintenance executive".

If the mouse pointer is hovering on a comment, the author and the time stamp of the comment will be displayed. This works while editing as well as afterwards.

After saving your changes, you can toggle the comments by clicking a comment.

A comment can be deleted by selecting it with the mouse and then deleting the selection. If some blue marks remain, just select them as well and use the function 'Clear formatting' within the menu 'Format'. See next chapter, too.

Table of Contents

Erase Formatting

You can't make an omelette without breaking eggs. And at least the eggshells have to be removed from time to time. This is how you can get rid of all formattings of a section of text:

Clear all formattings.
Clear all formattings.

You highlight the corresponding section of text with the mouse and choose the function 'Clear formatting' in the menu 'Format'.

Table of Contents

Edit Source Code

If you are fluently speaking HTML, then the source code mode might be your friend! You can directly edit the source code of a Persona, a User Story, or a BDD Scenario by using the function 'Source code' within the menu 'Tools'.

Open up the source code view.
Open up the source code view.

This will open an overlay where you can edit and save the HTML source code of the specification item.

The source code view.
The source code view.

But keep in mind that not all HTML tags are allowed: tags that are not permissible will be removed.

Table of Contents

Insert Program Code

Sometimes it might be handy if you could illustrate e.g. a BDD Scenario by inserting a code snippet. That's why there is a button for that.

Insert a code snippet.
Insert a code snippet.

At the top of the window to insert or update code snippets you can select the programming language that is being used for the snippet. This way the syntax highlighting will be working.

Select the programming language for the syntax highlighting to be working.
Select the programming language for the syntax highlighting to be working.

BDD Scenario with a code snippet.
BDD Scenario with a code snippet.

So, now you are ready to go!

Table of Contents

Personas

It is recommended to start writing down Personas. A Persona is an archetype of a specific group of users of the project that you are about to implement.

View of a Persona.
View of a Persona.

Personas will help you, to see the requirements for your software through the eyes of your users. And not from the point of view of the product manager, the project manager, or the developers. Give your Personas a "face", i.e. among other attributes a catchy name. After that you will write down the expectations of this Persona of your software. Best would be to discuss and amend the Personas together with your team. Example Personas of the project for the ATM.


Table of Contents

User Stories

Now you can depict typical activities with your software for each of your Personas. Every User Story covers a single such operation. They obey an easy scheme (Who does what and why). In a more formal way the pattern is:

"As a/an <role> I want to <goal/desire> in order to <benefit>"

Examples of User Stories:

As an author I want to see my last document when starting the app in order to save time.

As a customer of the bank I want to get cash from the ATM all around the clock in order to be independent of the opening hours.

A User Story describes what a Persona wants to do with the software to be built and what the goal of the activity is — but without digging too much into details. The latter will be defined later on using BDD Scenarios.

View of a User Story.
View of a User Story.

Example User Stories of the project for the ATM.


Table of Contents

BDD Scenarios

BDD Scenarios do describe in detail, how a certain function under certain conditions should work. BDD Scenarios also define the acceptance criteria for User Stories. BDD stands for Behaviour Driven Development that is also somewhat related to "test driven development". Yulup enables your team to write down the results of the requirement engineering or specification phase in a manner that is easily understandable for every person involved and to use them during all phases of the project. If needed, you can adopt them on the fly.

View of a BDD Scenario.
View of a BDD Scenario.

In contrast to User Stories (Who does what and why) BDD Scenarios determine the "how". You define, what exactly does take place, if in a given situation an action is being triggered. BDD Scenarios are built up according to an easy, pre-defined scheme, too:

"Given <precondition>, when <action>, then <result>"

In order to specify a User Story typically a handful of BDD Scenarios are necessary.

External BDD Scenarios

The most convenient way is to directly write the BDD Scenarios in Yulup. But Yulup supports also the usage of third party systems for this task. In this case you can set the type of the BDD Scenario to external and store the URL of the BDD Scenario of the third party system.

Later on the BDD Scenarios are also the foundation for the information architects, designers, copy writers, and programmers in order to implement the functionalities accordingly. And they are as well the basis for testing and for acceptance.

Example BDD Scenarios of the project for the ATM.


Table of Contents

Schemas for User Stories and BDD Scenarios

Yulup offers you the possibility to choose between several schemata for User Stories and BDD Scenarios when creating a new project. Depending on the chosen schema the wording differs slightly. This results in a different flow when writing or reading the specification items. And you might be able the write the User Stories and BDD Scenarios more fluently.
Which variant you choose is totally up to you. Additionally it is possible to set the language for the specification independently from the language you are using for the rest of Yulup.

English, Variant 1

User Stories
As a <role>, I want to <goal> ​so that ​<benefit>.
BDD Scenarios
Given <condition> when <action> then <result>.
Examples
User Stories
As an author, I want to see my last document when starting the app ​so that ​I can save time.
BDD Scenarios
Given I have used the app before when I start the app then the last used document will be displayed.

English, Variant 2

User Stories
As a <role>, I want to <goal> ​in order to ​<benefit>.
BDD Scenarios
Given <condition> when <action> then <result>.
Examples
User Stories
As an author, I want to see my last document when starting the appin order to ​save time.
BDD Scenarios
Given I have used the app before when I start the app then the last used document will be displayed.

German, Variant 1

User Stories
Als <Rolle>, möchte ich <Ziel>, ​so dass ​<Nutzen>.
BDD Scenarios
Gegeben sei, dass ​<Vorbedingung>, wenn <Aktion>, dann <Ergebnis>.
Examples
User Stories
Als Autor, möchte ich beim Start der Anwendung mein zuletzt bearbeitetes Dokument sehen, ​so dass ​ich Zeit sparen kann.
BDD Scenarios
Gegeben sei, dass ​ich die Anwendung schon einmal benutzt habe, wenn ich die Anwendung starte, dann wird das zuletzt benutzte Dokument geöffnet.

German, Variant 2

User Stories
Als <Rolle>, möchte ich <Ziel>, ​um ​<Nutzen>.
BDD Scenarios
Gegeben sei, dass ​<Vorbedingung>, wenn <Aktion>, dann <Ergebnis>.
Examples
User Stories
Als Autor, möchte ich beim Start der Anwendung mein zuletzt bearbeitetes Dokument sehen, ​um ​Zeit zu sparen.
BDD Scenarios
Gegeben sei, dass ​ich die Anwendung schon einmal benutzt habe, wenn ich die Anwendung starte, dann wird das zuletzt benutzte Dokument geöffnet.

German, Variant 3

User Stories
Als <Rolle>, möchte ich <Ziel>, ​so dass ​<Nutzen>.
BDD Scenarios
Angenommen ​<Vorbedingung>, wenn <Aktion>, dann <Ergebnis>.
Examples
User Stories
Als Autor, möchte ich beim Start der Anwendung mein zuletzt bearbeitetes Dokument sehen, ​so dass ​ich Zeit sparen kann.
BDD Scenarios
Angenommen ​ich habe die Anwendung schon einmal benutzt, wenn ich die Anwendung starte, dann wird das zuletzt benutzte Dokument geöffnet.

German, Variant 4

User Stories
Als <Rolle>, möchte ich <Ziel>, ​um ​<Nutzen>.
BDD Scenarios
Angenommen ​<Vorbedingung>, wenn <Aktion>, dann <Ergebnis>.
Examples
User Stories
Als Autor, möchte ich beim Start der Anwendung mein zuletzt bearbeitetes Dokument sehen, ​um ​Zeit zu sparen.
BDD Scenarios
Angenommen ​ich habe die Anwendung schon einmal benutzt, wenn ich die Anwendung starte, dann wird das zuletzt benutzte Dokument geöffnet.

Inhaltsverzeichnis

During Development: Associate Code Files with Tests

Yulup is connected with your source code repository. As soon as changes take place in the source code repository, they will show up in Yulup in the section "Changes".

Code files can be associated with tests.
Code files can be associated with tests.

There you can associate a code file with tests. These tests can either be an automated test or a BDD Scenario, that has previously been written down in the section "Specification". From now on all the automated tests will be performed when a change takes place to this file, and the result is shown in Yulup. This way you are always able to see what went well and where a hickup happened. On the other hand all the tests that have to be performed manually are listed in the section "Pending Tests".

Table of Contents

Less Testing, Better Testing!

Testing, we will never do enough of it.

What is true for bicycle racing unfortunately is valid for most of the software projects, too. Often there are neither enough time nor resources to perform all tests e.g. after an update to a software.

That's where Yulup will help you as well. It lists all the tests that should be conducted after a change. All other tests do not have to be performed, as they are not relevant to the change.

You know how time-consuming testing can be if it has a fixed space in your project plans. But Yulup will help you significally reduce the effort for testing.

And if — until now — you had the impression that testing has been somewhat neglected, then Yulup will show you, what you should be testing (and what can be omitted).

The section "Pending Tests" will show you all pending, manual tests — for all branches that are available in your source code repository. There you directly can — after a test being conducted — update its outcome.

A pending, manual test at the section "Pending Tests".
A pending, manual test at the section "Pending Tests".

Table of Contents

Made with in Zurich:

Yulup
Stockerstrasse 32
8002 Zurich
Switzerland

info@yulup.com


© YEAR Wyona | Contact | Twitter

Yulup Logo