STM Lab
STM Lab
EXPERIMENT 1:
1. Write a ‘c’ program to demonstrate the working of the fallowing constructs:
i) do…while ii) while…do iii) if …else iv) switch v) for Loops in C language
construct Objective
To understand the working of do while with different range of values and test cases
#include <stdio.h>
void main (){
int i, n=5,j=0;
clrscr(); printf(“enter
a no”);
scanf(“%d”,&i);
do{
if(i%2==0)
{ printf("%d", i);
printf("is a even
no."); i++;
j++;
}
else { printf("%d", i);
printf("is a odd
no.\n"); i++;
j++;
}
}while(i>0&&j<n);
getch();
2 2 is even number
3 is odd number
4 is even number
5 is even number
6 is even number
SOFTWARE TESTING METHODOLOGIES Redg No:
Test cases:
Objective
To understand the working of while with different range of values and test cases
#include<stdio.h>
#include<conio.h>
void main ()
{
int i, n=5,j=1;
clrscr();
printf(“enter a no”);
scanf(“%d”,&i);
while (i>0 && j<n)
{
if(i%2==0)
{
printf(“%d”,i);
printf(“is a even number”;
i++;
j++;
}
else{
else{ printf(“%d”,i);
printf(“is a odd number”);
i++;
j++;
}
getch(); }
}
2 2 is even number 3
is odd number 4 is
even number 5 is
odd number 6 is
even number
SOFTWARE TESTING METHODOLOGIES Redg No:
Test cases:
Objective
To understand the working of if else with different range of values and test cases
#include<stdio.h>
#include <conio.h>
int i;
clrscr();
printf(“enter a number ”);
scanf(“%d”,&i);
if(i%2==0){
printf(“%d”,i);
} printf(“is a even number”);
else{
printf(“%d”,i);
printf(“is a odd number”);
}
getch();
2 2 is even number 3
is odd number 4 is
even number 5 is
odd number 6 is
even number
Test cases:
Objective
To understand the working of switch with different range of values and test
int a,b,c;
clrscr();
printf(“1.Add/n 2.Sub /n 3.Mul /n 4.Div /n Enter Your
choice”); scanf(“%d” , &i);
printf(“Enter a,b values”);
scanf(“%d%d”,&a,&b);
switch(i){
case 1: c=a+b;
printf(“ The sum of a & b is: %d” ,c);
break;
case 2: c=a-b;
printf(“ The Diff of a & b is: %d” ,c);
break;
case 3: c=a*b;
printf(“ The Mul of a & b is: %d” ,c);
break;
case 4: c=a/b;
printf(“ The Div of a & b is: %d” ,c);
break;
default:
default:
printf(“ Enter your choice”);
} break;
getch();
}
SOFTWARE TESTING METHODOLOGIES Redg No:
Output:
Input Output
Enter Ur choice: 1
Enter a, b Values: 3, 2 The sum of a & b is:5
Enter Ur choice: 2
Enter a, b Values: 3, 2 The diff of a & b is: 1
Enter Ur choice: 3
Enter a, b Values: 3, 2 The Mul of a & b is: 6
Enter Ur choice: 4
Enter a, b Values: 3, 2 The Div of a & b is: 1
Test cases:
Enter Ur choice: 1
The sum of a & b is:5 5
Enter a, b Values: 3,
2
Enter Ur choice: 2
The diff of a & b is: 1 1 Success
Enter a, b Values: 3,
2
Enter Ur choice: 3
The Mul of a & b is: 6 6
Enter a, b Values: 3,
2
Enter Ur choice: 4
The Div of a & b is: 1 1
Enter a, b Values: 3,
2
Test case no:2
a= 22222222222222
construct Objective
To understand the working of for with different range of values and test cases
#include <stdio.h>
#include <conio.h>
printf(“%d”, i);
printf(“ is a odd
} no”); i++;
}
getch();
} getch();
Output:
Enter a no: 5
0 is a even no
1 is a odd no
2 is a even no
3 is a odd no
4 is a even no
5 is a odd no
SOFTWARE TESTING METHODOLOGIES Redg No:
Test cases:
EXPERIMENT 2
#include<stdio.h>
#include<conio.h>
void main()
{
int a[3][3],b[3][3],c[3][3],i,j,k,m,n,p,q;
clrscr();
printf(“ Enter 1st matrix no.of rows & cols”)
scanf(“%d%d”,&m,&n);
printf(“ Enter 2nd matrix no.of rows & cols”)
scanf(“%d%d”,&p,&q);
for(i=0;i<p;i++)
{
for(j=0;j<q;j++)
{
printf("%d\t",b[i][j]);
}
printf("\n");
}
for(i=0;i<m;i++)
{
for(j=0;j<q;j++)
{ c[i][j]=0;
for(k=0;k<n;k++)
{
c[i][j]=c[i][j]+a[i][k]*b[k][j];
}
}
}
for(i=0;i<m;i++)
{
for(j=0;j<q;j++)
{
printf("%d\t",c[i][j]);
}
printf("\n");
}
getch();
}
Output:
Enter Matrix1: 1 1 1
111
111
Enter Matrix2: 1 1 1
111
111
Actual Output : 3 3 3
333
333
SOFTWARE TESTING METHODOLOGIES Redg No:
Test cases:
Matrix1: 1 1 1
111 3 3 3 33 3
111 3 3 3 3 3 3 Success
3 3 3 33 3
Matrix2: 1 1 1
111
111
234567891 22222221533
213242424 56456475457
SOFTWARE TESTING METHODOLOGIES Redg No:
EXPERIMENT 3
Aim:
Take any system (e.g. ATM system) and study its system specifications and report the
various bugs.
9. Successful withdrawal.
12. Expected message due to amount to withdraw is greater than possible balance.
13. Unsuccessful withdraw operation due to click cancel after insert card.
SOFTWARE TESTING METHODOLOGIES Redg No:
EXPERIMENT :4
Aim: Write the test cases for any known application (e.g. Banking application)
4. Check whether you are able to deposit an amount in the newly created account (and
5. Check whether you are able to withdraw an amount in the newly created account (after
depo sit) (and thus updating the balance)
6. Check whether company name and its pan number and other details are provided in
case of salary account
9.Check whether proofs for joint account is provided in case of joint account
10. Check whether you are able deposit an account in the name of either of the person in an
12. Check whether you are able withdraw an account in the name of either of the person
in an joint account.
13. Check whether you are able to maintain zero balance in salary account
14. Check whether you are not able to maintain zero balance (or mini balance) in non-
salary account
SOFTWARE TESTING METHODOLOGIES Redg No:
EXPERIMENT:5
Aim: Create a test plan document for any application (e.g. Library Management
System)
This test report is the result for testing in the LMS. It mainly focuses on two problems
1. what we will test
2. how we will test.
3. GUI test
Pass criteria: librarians could use this GUI to interface with the backend library
database without any difficulties
4. Database test
Pass criteria: Results of all basic and advanced operations are normal (refer to section 4)
5. Basic function test
Add a student
Experiment 6
Aim:
To perform an operation on the application being tested, a TSL statement describing
the object selected
WinRunner Uses:
The goal of WinRunner is to make sure business processes are properly carried out.
WinRunner uses TSL, or Test Script Language.
Context Sensitive
Context Sensitive mode records your actions on the application being tested in
terms of the GUI objects you select (such as windows, lists, and buttons), while ignoring
the physical lo- cation of the object on the screen. Every time you and the action
performed is generated in the test script. As you record, WinRunner writes a unique
description of each selected object to a GUI map.
The GUI map consists of files maintained separately from your test scripts. If the user
interface of your application changes, you have to update only the GUI map, instead of
hundreds of tests. This allows you to easily reuse your Context Sensitive test scripts on
future versions of your application.
To run a test, you simply play back the test script. WinRunner emulates a user by mov- ing
the mouse pointer over your application, selecting objects, and entering keyboard input.
WinRunner reads the object descriptions in the GUI map and then searches in the
application being tested for objects matching these descriptions. It can locate objects in a
window even if their placement has changed.
Analog
SOFTWARE TESTING METHODOLOGIES Redg No:
Analog mode records mouse clicks, keyboard input, and the exact x- and y-
coordinates traveled by the mouse. When the test is run, WinRunner retraces the mouse
tracks. Use Analog mode when exact mouse coordinates are important to your test, such
as when testing a drawing application.
The first stage is to create the GUI map so WinRunner can recognize the GUI
objects in the application being tested. Use the RapidTest Script wizard to review the user
interface of your application and systematically add descriptions of every GUI object to
the GUI map. Alternatively, you can add descriptions of individual objects to the GUI
map by clicking objects while recording a test.
2. Create Tests
3. Debug Tests
Run tests in Debug mode to make sure they run smoothly. One can set breakpoints, monitor
variables, and control how tests are run to identify and isolate defects. Test results are saved
in the debug folder, which can be discarded once debugging is finished. When WinRunner
runs a test, it checks each script line for basic syntax errors, like incorrect syntax or missing
elements in If, While, Switch, and For statements. We can use the Syntax Check options
(Tools >Syn- tax Check) to check for these types of syntax errors before running your test.
4. Run Tests
Tests can be run in Verify mode to test the application. Each time WinRunner
encounters a checkpoint in the test script, it compares the current data of the application
being tested to the expected data captured earlier. If any mismatches are found, WinRunner
captures them as actual results.
5.View Results
Following each test run, WinRunner displays the results in a report. The report
SOFTWARE TESTING METHODOLOGIES Redg No:
details all the major events that occurred during the run, such as checkpoints, error
messages, system messages, or user messages. If mismatches are detected at checkpoints
during the test run, we can view the expected results nd the actual results from the Test
Results window. In cases of bitmap mismatches, one can also view a bitmap that displays
only the difference between the expected and actual results.
We can view results in the standard WinRunner report view or in the Unified
report view. The WinRunner report view displays the test results in a Windows-style
viewer. The Unified report view displays the results in an HTML-style viewer (identical
to the style used for QuickTest Professional test results).
5. Report Defects
If a test run fails due to a defect in the application being tested, one can report
information about the defect directly from the Test Results window.
This information is sent via e-mail to the quality assurance manager, who tracks
the defect until it is fixed.
Before you begin creating tests, you should familiarize yourself with the
WinRunner main window.
The first time you start WinRunner, the Welcome to WinRunner window and the
“What’s New in WinRunner” help open. From the Welcome window you can create a new
test, open an existing test, or view an overview of WinRunner in your default browser.
If you do not want this window to appear the next time you start WinRunner, clear
the Show on Startup check box. To show the Welcome to WinRunner window upon
startup from within WinRunner, choose Settings > General Options, click the
Environment tab, and select the Show Welcome screen check box.
The Standard toolbar provides easy access to frequently performed tasks, such as
opening, executing, and saving tests, and viewing test results.
Standard Toolbar
The User toolbar displays the tools you frequently use to create test scripts. By
default, the User toolbar is hidden. To display the User toolbar, choose Window > User
Toolbar. When you create tests, you can minimize the WinRunner window and work
exclusively from the toolbar. The User toolbar is customizable. You choose to add or
remove buttons using the Set- tings > Customize User Toolbar menu option. When you
re-open WinRunner, the User toolbar appears as it was when you last closed it. The
commands on the Standard toolbar and the User toolbar are described in detail in
subsequent lessons.
Note that you can also execute many commands using softkeys. Softkeys are
keyboard shortcuts for carrying out menu commands. You can configure the softkey
combinations for your keyboard using the Softkey Configuration utility in your
WinRunner program group. For more information, see the “WinRunner at a Glance”
chapter in your WinRunner User’s Guide.
Now that you are familiar with the main WinRunner window, take a few minutes
to explore these window components before proceeding to the next lesson.
You create and run WinRunner tests in the test window. It contains the following key
elements:
• Test window title bar, with the name of the open test
• Test script, with statements generated by recording and/or programming in TSL,
Mercury Interactive’s Test Script Language
• Execution arrow, which indicates the line of the test script being executed during a
test run, or the line that will next run if you select the Run from arrow option
• Insertion point, which indicates where you can insert or edit text
SOFTWARE TESTING METHODOLOGIES Redg No:
Experiment 7
Aim:
To Study of any web testing tool (e.g. Selenium)
• Selenium is a robust set of tools that supports rapid development of test automation
for web-based applications. Selenium provides a rich set of testing functions
specifically geared to the needs of testing of a web application. These operations
are highly flexible, allowing many options for locating UI elements and comparing
expected test results against actual application behavior.
• One of Selenium’s key features is the support for executing one’s tests on multiple
browser platforms.
Selenium Components
• Selenium is composed of three major tools. Each one has a specific role in aiding
the development of web application test automation.
• Selenium-RC provides an API (Application Programming Interface) and library for
each of its supported languages: HTML, Java, C#, Perl, PHP, Python, and Ruby.
This ability to use Selenium-RC with a high-level programming language to
develop test cases also allows the automated testing to be integrated with a project’s
automated build environment.
Selenium-Grid
• Selenium-Grid allows the Selenium-RC solution to scale for large test suites or test
suites that must be run in multiple environments. With Selenium-Grid, multiple
instances of Selenium-RC are running on various operating system and browser
configurations; Each of these when launching register with a hub. When tests are
sent to the hub they are then redirected to an available Selenium-RC, which will
launch the browser and run the test. This allows for running tests in parallel, with
the entire test suite theoretically taking only as long to run as the longest individual
test.
• * Tests developed on Firefox via Selenium-IDE can be executed on any other
supported browser via a simple Selenium-RC command line.
• ** Selenium-RC server can start any executable, but depending on browser security
set- tings there may be technical limitations that would limit certain features.
Flexibility and Extensibility
• Selenium is highly flexible. There are multiple ways in which one can add
functionality to Selenium’s framework to customize test automation for one’s
specific testing needs. This is, perhaps, Selenium’s strongest characteristic when
compared with proprietary test automation tools and other open source solutions.
Selenium-RC support for multiple programming and scripting languages allows the
test writer to build any logic they need into their automated testing and to use a
preferred programming or scripting language of one’s choice.
• Selenium-IDE allows for the addition of user-defined “user-extensions” for
creating ad- ditional commands customized to the user’s needs. Also, it is possible
to re-configure how the Selenium-IDE generates its Selenium-RC code. This
allows users to customize the generated code to fit in with their own test
SOFTWARE TESTING METHODOLOGIES Redg No:
• A file similar to this would allow running the tests all at once, one after another,
from the Selenium-IDE.
• Test suites can also be maintained when using Selenium-RC. This is done via
program- ming and can be done a number of ways. Commonly Junit is used to
maintain a test suite if one is using Selenium-RC with Java. Additionally, if C# is
the chosen language, Nunit could be employed. If using an interpreted language like
Python with Selenium-RC than some simple programming would be involved in
setting up a test suite. Since the whole reason for using Sel-RC is to make use of
programming logic for your testing this usual- ly isn’t a problem.
• Few typical Selenium commands.
• verifyText – verifies expected text and it’s corresponding HTML tag are present
on the page.
Experiment 7(A)
Bugzilla is a “Bug Tracking System” that can efficiently keep track of outstanding
bugs in a product. Multiple users can access this database and query, add and manage
these bugs. Bugzilla essentially comes to the rescue of a group of people working together
on a product as it enables them to view current bugs and make contributions to resolve
issues. Its basic repository nature works out better than the mailing list concept and an
organized database is always easier to work with.
3. Ultimately, Bugzilla puts the power in user’s hands to improve value to business while
providing a usable framework for natural attention to detail and knowledge store to
flourish.
Bugzilla is organised in the form of bug reports that give all the information needed
about a particular bug. A bug report would consist of the following fields.
• Product–>Component
• Assigned to
• Status (New, Assigned, Fixed etc)
• Summary
• Bug priority
• Bug severity (blocker, trivial etc)
• Bug reporter
SOFTWARE TESTING METHODOLOGIES Redg No:
Using Bugzilla:
Preferences
When we start using Bugzilla, we’ll need to set a small number of parameters and
preferences. At a minimum, we should change the following items, to suit our particular
need:
Before entering bugs, make sure we add some new users. We can enter users very easily,
with a minimum of information. Bugzilla uses the email address as the user ID, because
users are frequently notified when a bug is entered, either because they entered the bug,
because the bug is assigned to them, or because they’ve chosen to track bugs in a certain
project.
1. Click Users.
2. Click add a new user.
3. Enter the Login name, in the form of an email address.
4. Enter the Real name, a password, and then click Add.
5. Select the Group access options. we’ll probably want to enable the following
options in
the row titled User is a member of these groups:
• Can confirm
• Edit bugs
• Edit components
Impersonating a User
Impersonating a user is possible, though rare, that we may need to file or manage a bug
in an area that is the responsibility of another user when that user is not available. Perhaps
the user is on vacation, or is temporarily assigned to another project. We can impersonate
the user to create or manage bugs that belong to that user.
Adding Products
We’ll add a product in Bugzilla for every product we are developing. To start
with, when we first login to Bugzilla, we’ll find a test product called Test Product. We
should delete this and create a new product.
To add a product:
6. Enter a description.
7. Click Add. A message appears that you’ll need to add at least one component.
To add a component:
1. Click the link add at least one component in the message that appears after
creating a new product.
2. Enter the Component name.
3. Enter a Description.
4. Enter a default assignee. Use one of the users we’ve created. Remember to enter
the as- signee in the form of an email address.
5. Click Add.
6. To add more components, click the name of product in the message that reads edit
other components of product <product name>.
Once we begin to enter new bugs, we’ll see a number of drop-down lists
containing default values. Some of these may work just fine for our product. Others may
not. We can modify the values of these fields, adding new values and deleting old ones.
Let’s take a look at the OS category.
1. At the bottom of the page, in the Edit section, click Field Values.
2. Click the link, in this case OS, for the field we want to edit. The OS field contains
a list of operating system names. We are going to add browsers to this list. In reality,
we might create a custom field instead, but for the sake of this example, just add
them to the OS list.
3. Click Add a value. In the Value field, enter “IE7.” Click Add.
4. Click Add a value again.
SOFTWARE TESTING METHODOLOGIES Redg No:
Eventually, we’ll end up with thousands of bugs listed in the system. There are
several ways to view the bugs. The easiest is to click the My Bugs link at the bottom of
the page. Because we’ve only got one bug reported, we’ll use the standard Search
function.
To find a bug:
1. Click Reports.
2. Click the Search link on the page, not the one in the top menu. This opens a page
titled
“Find a Specific Bug.”
3. Select the Status.
4. Select the Product.
5. Enter a word that might be in the title of the bug.
SOFTWARE TESTING METHODOLOGIES Redg No:
6. Click Search. If any bugs meet the criteria that we have entered, Bugzilla displays
them in a list summary.
7. Click the ID number link to view the full bug report.
Suppose we want to change the status of the bug. We’ve reviewed it and have deter-
mined that it belongs to one of the users we have created earlier
To modify a bug report:
1. Scroll down the full bug description and enter a comment in the Additional
Comments field.
2. Select “Reassign bug to” and replace the default user ID with one of the other user
IDs you created. It must be in the format of an email address
SOFTWARE TESTING METHODOLOGIES Redg No:
Experiment 7(B)
Test Director offers an organized framework for testing applications before they
are deployed. Since test plans evolve with new or modified application requirements, you
need a central data repository for organizing and managing the testing process. Test
Director guides through the requirements specification, test planning, test execution, and
defect tracking phases of the testing process. The Test Director testing process includes
four phases:
Specifying Requirements
• Requirements are linked to tests and defects to provide complete traceability and
aid the decision-making process
• Each requirement in the tree is described in detail, and can include any relevant
attachments. The QA tester assigns the requirement a priority level which is taken
into consideration when the test team creates the test plan
Planning Tests
• As the tests are also linked to defects, this helps ensure compliance with testing
requirements throughout the testing process
Running Tests
As the application constantly changes, using test lab, run manual and automated
tests in the project in order to locate defects and assess quality.
• By creating test sets and choosing which tests to include in each set, test suite can be
created. A test set is a group of tests in a Test Director project database designed to
achieve specific testing goals.
Tracking Defects
Experiment:7(c)
Test link is an open source test management tool. It enables creation and
organization of test cases and helps manage into test plan. Allows execution of test cases
from test link itself. One can easily track test results dynamically, generate reports,
generate test metrics, prioritize test cases and assign unfinished tasks. Its a web based tool
with GUI, which provides an ease to develop test cases, organize test cases into test plans,
execute these test cases and generate re- ports. Test link exposes API, written in PHP, can
help generate quality assurance dashboards. The functions like Add Test Case To
TestPlan, Assign Requirements, Create Test Case etc. helps create and organize test cases
per test plan. Functions like Get TestCases For TestPlan, Get- Last Execution Result
allows one to create quality assurance dashboard.
Test Link enables easily to create and manage Test cases as well as organize them
into Test plans. These Test plans allow team members to execute Test cases and track test
results dynamically, generate reports, trace software requirements, prioritize and assign
tasks. Read more about implemented features and try demo pages.
Overall structure
There are three cornerstones: Product, Test Plan and User. All other data are
relations or attributes for this base. First definition of a couple of terms that are used
throughout the documentation.
Product: A Product is something that will exist forever in TestLink. Products will
under- go many different versions throughout their lifetimes. Product includes Test
Specification with Test Cases and should be sorted via Keywords.
Test Plan: Test Plans are created when you’d like to execute test cases. Test plans can be
made up of the test cases of one or many Products. Test Plan includes Builds, Test Case
Suite and Test Results.
TestLink breaks down the test case structure into three levels Components,
Categories, and test cases. These levels are persisted throughout the application.
Component: Components are the parents of Categories. Each Component can have
SOFTWARE TESTING METHODOLOGIES Redg No:
many Categories.
Category: Categories are the parents of test cases. Each Category can have many test
cases.
Tester must follow this structure: Component, Category and test case. At first you
create Component(s) for your Product. Component includes Categories. Category has the
similar meaning but is second level of Test Specification and includes just Test Cases.
• Steps: describe test scenario (input actions); can also include precondition and cleanup
information here.
system.
Test cases, Categories, and Components may be deleted from a test plan by users
with lead permissions from the “delete test cases” screen. Deleting data may be useful
when first creating a test plan since there are no results. However, Deleting test cases will
cause the loss of all results associated with them. Therefore, extreme caution is
recommended when using this functionality.
Requirements relation
Test Plans
Test plan contains name, description, collection a chosen test cases, builds, test
results, milestones, tester assignment and priority definition.
SOFTWARE TESTING METHODOLOGIES Redg No:
Test Plans may be deleted from the “Create test plan” page (link “Create Test
Plan”) by users with lead privileges. Test plans are the basis for test case execution. Test
plans are made up of test cases imported from Products at a specific point of time. Test
plans can only be created by users with lead privileges. Test plans may be created from
other test plans. This allows users to create test plans from test cases that at a desired
point in time. This may be necessary when creating a test plan for a patch. In order for a
user to see a test plan they must have the propper rights. Rights may be assigned (by leads)
in the define User/Project Rights section. This is an important thing to remember when
users tell you they can’t see the project they are working on.
Test Execution
4. A Build is created.
5. The Test plan is assigned to testers (otherwise they cannot navigate to this Test Plan).
Select a required Test Plan in main page and navigate to the ‘Execute tests’ link. Left
pane serves for navigation in Test Case Suite via tree menu, filtering and define a
Execution is the process of assigning a result (pass, fail, blocked) to a test case for a
spe- cific build. ‘Blocked’ test case is not possible to test for some reason (e.g. a problem
in configu- ration disallows to run a tested functionality).
Updated Test Cases: If users have the proper rights they can go to the “Update modified
test case” page through the link on main page. It is not necessary for users to update test
cases if there has been a change (newer version or deleted).
SOFTWARE TESTING METHODOLOGIES Redg No:
Allocating the work either test case creation/execution any kind of documents is easy
1. when a test cases is updated the previous version also can be tracked
2. We can generate results build wise
3. Test plans are created for builds and work allocations can be done.
4. Report, is one of the awesome functionality present in the Test link, it generates reports
in de- sired format like HTML/ CSV /Excel and we can create graphs too.
5. And the above all is done on the privileges based which is an art of the test link and i
liked this feature much
1. Administrator create a Product “Fast Food” and a user Adam with rights “leader” and
Bela with rights “Senior tester”.
2. Adam imports Software Requirements and for part of these requirements generates
empty Test cases.
3. Bela describe test sneario of these Test cases that are organized according to
Components and Categories.
4. Adam creates Keyword: “Regression” and assignes this keyword to ten of these test cases.
5. Adam creates a Test Plan “Fish & Chips”, Build “Fish 0.1” and add Test Cases with
key- words “Regression”.
6. Adam and Bela execute and record the testing with result: 5 passed, 1 failed and 4 are
blocked.
7. Developers make a new build “Fish 0.2” and Bela tests the failed and blocked test cases
only.
Exceptionaly all these five Test cases passed.
8. Manager would like to see results. Administrator explains him that he can create account
him- self on the login page. Manager does it. He has “Guest” rights and could see results
and Test cases. He can see that everything passed in overall report and problems in build
“Fish 0.1” in a report for particular Build. But he can change nothing.