TESSY -- An Overall Unit Testing Tool
|
|
|
- Colin Gaines
- 9 years ago
- Views:
Transcription
1 Quality Week 1995 TESSY -- An Overall Unit Testing Tool Joachim Wegener Roman Pitschinetz Daimler-Benz AG Research and Technology Alt-Moabit 96 a D Berlin, Germany Tel: +49 (0) Fax: +49 (0) [email protected] Abstract Until now, a lot of computer-aided software testing tools have been developed. Most of them aim at the special support of several distinct test activities like test execution, monitoring, and test evaluation. Tools which cover a wider range of activities and test phases have the decisive shortcoming that there is no methodological support for the systematic design of test cases, particularly for the functional test. In summary, there is no sufficient overall support for all test activities. In order to overcome these shortcomings, the testing tool TESSY was developed. The most important strength of TESSY is that it provides support for the whole testing life cycle, with the main emphasis on computer-aided test case determination, test data selection, expected results prediction, test execution, and test evaluation. Furthermore, there is powerful support for test organization and test documentation. An integral part of TESSY is the classification-tree editor CTE, a graphical editor for the descriptive and systematic design of black-box test cases following the classification-tree method. Several other substantial components of TESSY are, for example, special window-based editors for the provision of essential environment information, for the graphical visualization of the test object s interface as well as for the interactive input of test data and expected results. During test execution, several basic activities, such as test driver generation, coverage analysis, and regression testing, are performed automatically. For the test evaluation, different criteria can be defined for the comparison of actual and expected results. Practical trials of the test system started in First promising results indicate that the test efficiency is enhanced significantly by using TESSY. Future work will focus on extensions of TESSY with respect to integration testing and automatic generation of test cases and test data. 1
2 1. Introduction Dynamic testing is of major practical importance for the quality assurance of software systems. It typically consumes 30 % - 50 % of the overall software development effort and budget (e. g. Myers 1979). Investigations of various software development projects in several divisions of the Daimler-Benz Group showed that the costs for software testing mostly arose for unit testing, integration testing, and system testing. On average, 34 % of total testing expenses is spent on unit testing, 28 % on integration testing and approximately 27 % on system testing. The remaining 11 % is spent on specific tests like the examination of software-hardware interfaces. A result of these statistics is that in practice up to 17 % of the overall development cost is allotted to unit testing. This significant quota of the entire development cost increases if integration testing is done bottom up and the integration is checked by testing higher level units. In this case the overall cost for unit and integration testing increases to an amount of 31 % of the entire development cost. This illustrates the importance of unit testing. Significant savings can be achieved, and the product quality can be improved by tools automating unit and integration testing. Moreover, system programmers will examine their units more carefully if they have powerful tools for efficient testing. This paper describes the computer-aided software testing tool TESSY which provides general support for all test activities needed for unit testing. The following chapter contains a description of test activities required for unit testing. Chapter three gives a short overview of computer-aided software testing tools that are suited for unit testing. Afterwards the test system TESSY and its usage are described by testing an example module of TESSY itself. First results from practical trials are reported in chapter five. After some concluding remarks the paper closes with a short outlook on future work. 2. Test Activities A systematic test comprises the following main activities: test case determination, test data selection, expected results prediction, test case execution, monitoring, and test evaluation as well as the accompanying activities of test organization and test documentation. This structure facilitates a systematic procedure and the definition of intermittent results. Figure 1 shows the test activities mentioned above and the relationships between them. The test organization includes all activities involved in the management of test objects and their appertaining data. Therefore, a test database is necessary containing, for instance, test cases, test data, expected results, actual values produced by the test object, and global settings required for the test. Furthermore, technical prerequisites for test case execution such as the implementation of stubs and test drivers have to be organized. Another task is to ensure the reproducibility of tests to support regression testing after program changes. In the course of test case determination, the test cases, with which the test object should be tested, are defined. A test case defines a certain input situation to be tested. It comprises a set 2
3 Functional Specification Program Test Organization incl. Test Database... Expected Results Prediction Test Case Determination Test Data Selection Test Case Execution Monitoring... Test Documentation... Test Evaluation... Figure 1: Test activities of input data from the test object s input domain. Each element of the set should, for example, lead to the execution of the same program functionality, the same program branch, or the same program state, depending on the test criteria applied. The test case determination is the most important activity for a thorough test, since it determines the kind and scope of theexamination and thus the quality of the test. A test case abstracts from a concrete test datum and defines it, only in so far as it is required for the intended test. During test data selection the tester has to choose a concrete element from each test case with which the test should be executed. Determining the anticipated results and program behavior for every selected test datum constitutes expected results prediction. If it is not possible to specify unequivocal output values or the expected behavior, acceptance criteria or reference data have to be used for the predicition of expected results. Subsequently, test case execution is performed. The test object is run with the selected test data. The output values and the program behavior are thus determined. The behavior of the test object can be observed and recorded during test case execution by means of monitoring. A common method is to instrument the program code according to a 3
4 white-box test criterion. The source code is extended for that purpose by inserting statements at control-flow or data-flow relevant points of the program, which count the number of executions of the according program parts. Another kind of monitoring is performed by several capture-and-replay tools. They record the outputs produced by the test object on the screen and save them for regression testing. In the course of test evaluation, actual and expected values as well as actual and expected program behavior are compared, and thus the test results are determined. Finally, the test should be evaluated by comparing the test results achieved with the test objectives aspired to. The objective of the test documentation is a clear, understandable, and comprehensive description of the test results and all other information produced during the test. Deviations between expected and actual behavior have to be documented, discovered errors are to be summarized in error statistics, and the fulfillment of the test objectives should be assessed. 3. Survey of Existing Testing Tools A large number of tools is available in the area of software testing all over the world. An important fraction of tools put the main focus on static analysis. However, more than 100 testing tools offer support for dynamic testing. A lot of them are capture-and-replay tools, in particular supporting system testing of interactive programs. Approximately 80 tools seem to be applicable for an employment in the field of unit testing (see e.g. Graham 1991, Wegener et al. 1994). A detailed study on these tools, examining their abilities to support the test activities mentioned above, reveals that none of the tools offers general support for all test activities. Nearly 50 % of the unit testing tools concentrate on monitoring. Additional 25 % combine test caseexecution and monitoring. Only five tools support test case determination but they have decisive deficiencies in the subsequent central test activities. Table 1 contains an anonymous survey of existing unit testing tools and gives a rough classification. Dark coloured fields indicate activities fully automated by the tools, light coloured areas indicate activities partially automated, for example, using interactive tools. It has to be considered that the table does not regard the effectivness of the tools in practical use. Due to the lack of software testing tools offering an overall and efficient support for all test activities, Daimler-Benz Research in Berlin developed the test system TESSY which provides general support for all test activities and aims at a considerable increase in unit testing efficiency for programs written in C. The costs for software testing are to be reduced, and the reliability of systematic and thoroughly tested software products is to be improved by using TESSY. 4. Test System TESSY The test system TESSY was developed on VAXstations with the operating system VMS for unit testing of ANSI-C and VAX-C programs. Other C-compilers, especially for host-target cross- 4
5 N u m Test Organization Test Case Determination Test Data Selection Test Activities Supported Expected Results Prediction Test Case Execution Monitoring Test Evaluation Test Documentation b er 6 5 o f T o o ls TESSY Table 1: Survey of unit testing tools compiling, were added during the first half of 1995 corresponding to the needs of TESSY users. Transfer to SUN/Solaris systems is currently in progress. The most important strength of TESSY is that it provides support for the whole testing life cycle, offering a homogenous, object-based, and context-sensitive user interface which guides the tester through all test phases. Accordingly, the use of TESSY is very simple and comfortable. As a result the test system can be applied by testers without detailed knowledge of the C programming language. This promotes the distinction between software development and quality assurance as it is demanded in various standards. The user interface is based on OSF s Motif toolkit. TESSY facilitates a combination of black-box and white-box tests. The emphasis is laid on black-box testing because only test cases derived from the functional specification allow to examine appropriately, whether or not all specified requirements have been transformed into the 5
6 test object. Test cases are determined using the classification-tree method and the classification-tree editor CTE (Grochtmann et al. 1995). During the functional test, the branch coverage can be investigated by means of instrumentation. If the degree of coverage is not sufficient to reach the test objectives, the test has to be improved subsequently by additional test cases. Through the extensive test organization assistance provided by TESSY, comprising an integrated database for all test relevant data, regression testing can be totally automated in most cases. After the tester has edited the required data for the first test execution the data are available for further tests at any time. Normally, the test run simply has to be repeated. Based on first results from practical trials TESSY is to be expanded in 1995 by mechanisms which support regression testing also in cases where the test object interface has changed. TESSY contains separate tools for each test activity which shall be explained successively in the following sections using a realistic example Example The sample function to be tested using TESSY is the C-function t_answer is_line_covered_by_rectangle ( struct line line, struct rectangle rectangle ) which checks whether or not a line is covered by a given rectangle with its sides parallel to the axes of the coordinate system. Input parameters of the test object are two structures. The first one of type line describes the line by the positions of its two end points, the second one of type rectangle describes the rectangle using the position of its upper left corner, its width and its height. If the line is covered by the rectangle, the test object should return the value yes, otherwise no. Figure 2 illustrates the task of the test object by means of an arbitrary rectangle and several sample lines. The figure also defines regions to describe the possible positions of the line end points with respect to the rectangle. The function is_line_covered_by_rectangle is part of the classification-tree editor CTE. It is used to determine the need of redrawing connecting lines between the elements of the classification-tree in case of window exposure events. Similar functions can be found in many other software systems dealing with graphical presentations Test Organization In TESSY a test is organized into projects. Each project contains at least one logical module. In preparation of the test, the user has to supply some information for each module using the environment editor. Among other data he enters the program sources for the logical module, the compiler to be used, and, if necessary, compiler options and linker instructions. In case all information is complete, TESSY investigates the whole export interface of the moduleautomat- 6
7 above and left above above and right rect_p width left height right p2 p1 below and left below below and right Figure 2: Rectangle with sample lines ically by analyzing all program sources stated. The export interface consists of all exported C-functions and their interface, including global variables, parameters, function return codes and the corresponding data types. The export functions ascertained represent the actual test objects. Before the tester can start with the central test activities for each function, he has to complete the interface description of the export functions by entering certain characteristics of each interface component for which an automatic identification was impossible. He must specify whether a component is only an input, an output, or input and output of the respective test object. Value parameters are always of the kind IN, the function return code is always of the kind OUT. Global variables and dynamic values, like pointers, can be of the kind IN, INOUT, or OUT. The completion of the interface description is carried out using TESSY s interface editor, shown in Figure 3. It is possible to browse through complex data types down to the level of basic C data types. Figure 3 illustrates this for the second parameter struct rectangle of the sample function. For the test object is_line_covered_by_rectangle the type of every parameter can be determined automatically from the source code. Both structures, line and rectangle, as well as their elements, are value parameters. Consequently, they are labelled IN. Naturally, the function return code is of the type OUT. Global variables do not exist. 7
8 Figure 3: Editor with interface description of is_line_covered_by_rectangle 4.3. Test Case Determination After having completed the interface information the tester is able to begin the main test activities with the test case determination. Test case determination is carried out by means of the graphical classification-tree editor CTE which supports the application of the classificationtree method (Grochtmann and Grimm 1993). The user edits the classification tree in a syntaxdirected and object-based manner. In the course of the classification-tree method, the input domain of the test object is regarded under various aspects assessed as relevant for the test. For each aspect disjoint and complete classifications are formed. Classes resulting from these classifications may be further classified. The stepwise partition of the input domain results in the classification tree. Subsequently, test cases are determined by combining classes of different classifications. This is done by using the tree for the generation of a combination table in which the test cases are marked interactively. The CTE transmits these test cases to the test system TESSY where they are saved in the test database. The classification-tree method and the classification-tree editor will be presented at the Quality Week 95, too (Grochtmann et al. 1995). Therefore, they are not explained in more detail here. 8
9 Figure 4: Test case determination for is_line_covered_by_rectangle using the CTE The test case determination for the example is_line_covered_by_rectangle leads to 49 test cases. Figure 4 shows the main window of the CTE displaying the appertaining classification tree and a part of the combination table. Test case number two, for instance, defines a test with the special case that the line end point P1 is the only point of the line which is covered by the given rectangle. P1 is located on the left side of the rectangle. The position of the line end point P2 is left from and above the rectangle. A corresponding sample line is shown in Figure Test Data Selection and Expected Results Prediction Following the test case determination, the user starts the test-data editor TDE to enter concrete test data and to predict the expected results for each defined test case. Based on the test case definition in the combination table of the CTE, a text version of the test case actually to be 9
10 worked on is generated and displayed in the upper left part of the editor. An additional test case comment is shown on the right in case the tester has entered one in the classification-tree editor. Below these text areas the whole test object interface is presented in two browsers. The left browser is used to edit test data for the input parameters of the test object, the right one to enter expected results for the output parameters. Each interface component can be browsed through down to the level of basic types where input areas for editing concrete test data and expected results are provided. In addition, the tester has to select an evaluation mode for each output parameter, which determines the way the actual values produced by the test object shall be evaluated with respect to the expected results. Appropriate evaluation modes are offered to the user in pop-up menus depending on the particular data type handled. Evaluation criteria are, for example, equality, inequality, and lower or upper bounds. To enter pointer values the user can generate dynamic values. Thereby, it is possible to enter dynamic data structures like lists and trees as input values or predicted results. Figure 5 illustrates the test-data editor with its two browsers for the second test case of is_line_covered_by_rectangle. The tester enters test data for the parameters line and rectangle in the left browser and the expected result for the function return code in the right browser. Coordinates are given as X-Window positions, beginning with (0,0) for the top left corner of the screen. The upper left corner of the rectangle is located at position (100,100). The width of the rectangle amounts to 100 pixels, its height to 50 pixels. The position of the first end point of the line, P1, is (100,125). Consequently, it is located on the left side of the rectangle as demanded in the test case specification. The second end point of the line has a position which is left from and above the rectangle. Its coordinates are (50,50). The only expected result to enter is a value for the function return code. Since the function return code is of the type enumeration, the expected results browser lists the possible values, and the user can select one value by simply clicking on the appertaining toggle button. For the actual test case, is_line_covered_by_rectangle has to detect a coverage of line and rectangle. Therefore, the expected output is yes. The evaluation mode is set to Equal Test Case Execution and Monitoring If test data, expected results and evaluation modes for each test case were entered completely, the test object can be executed with the test data. TESSY provides a special tool for controlling the test case execution (Figure 6). The tester can select the test cases to be executed from a table visualizing the whole set of test cases. Additional editors are available to edit operating systemdependent settings, like the definition of logicals, or to prepare the test object s environment on programming language level, for instance, in order to open a file required by the test object. Both the operating system-dependent settings and the preparations on programming language level often are a prerequisite for a proper test execution. Based on the data in the test database and the information given by the tester, TESSY generates a test driver which runs the test object for every selected test case with its test data. This test driver also receives the actual values produced by the test object and saves them in the test system database. The generated driver concurs with ANSI-C restrictions. For test case execution, the test driver is linked to the test 10
11 Figure 5: Test data selection and expected results prediction for is_line_covered_by_rectangle object and, if necessary, to other required files forming a so-called test rig. Optionally, the tester can export the test rig for test case execution on a target system. Afterwards it can be reloaded into the test system for test evaluation. Monitoring of the test object can be done by measuring the branch coverage achieved. For this purpose, TESSY provides automatic instrumentation of the test object s source code. It is possible to instrument either only the export functions or the entire module. For the sample function is_line_covered_by_rectangle the first eight test cases are to be executed and monitoring is activated for the entire module Test Evaluation and Test Documentation The last tool within TESSY is used for the test evaluation and the generation of a user determinable test documentation (Figure 7). The expected results and actual values are compared ac- 11
12 Figure 6: Controlling test case execution cording to the evaluation modes specified. This yields the test results. If the test object was instrumented, the branch coverage can be computed and the program branches not executed can be shown. The tester can specify the scope of the test documentation to be generated through a number of options. The documentation can vary from general error statistics for the complete test to very detailed tables for each test case executed. Generated documents can be saved in ASCIIfiles in order to import them into desktop publishing tools. An exemplary test documentation for is_line_covered_by_rectangle is illustrated in Figure 7. The first eight test cases were executed, and the branch coverage was measured. The execution of the first eight test cases did not discover any error in the test object, but only 40 % of the existing branches were executed. A detailed documentation is displayed for the second test case. 12
13 Figure 7: Test evaluation and test documentation for is_line_covered_by_rectangle 13
14 5. Practical Experience and Resulting Extensions The classification-tree editor has been used successfully in various projects for a systematic test case determination for more than three years now. In comparison with previous tests perceptible savings could be achieved: the number of test cases could be reduced and their quality was improved considerably. Savings of up to 50 % could be achieved for the test case determination. Thus the cost for the entire tests was diminished substantially. Because of the positive user acceptance the CTE prototype has been developed to a product version, which will be available in summer Practical trials of the entire test system started in the fourth quarter of 1994 in larger projects of Daimler-Benz divisions. The first application was just completed successfully. The test efficiency could be improved significantly. Savings of up to 70 % were estimated by the TESSY users regarding the fact that TESSY totally automates several time-consuming activities. Nevertheless some useful enlargements were proposed and TESSY was extended to offer new functionality for batch processing and host-target testing. For example, several target compilers used in the projects are now supported. Furthermore, two additional interactive tools are currently under development to complement the support for regression testing. They can be applied to reuse test information like test cases, test data, and expected results in cases where the test object interface was changed, or the classification-tree was enlarged by supplementary classifications and classes in order to increase the test quality for regression tests. It is also possible to use them to recycle existing test information for the examination of other test objects. 6. Conclusion and Future Work The test system TESSY provides powerful editors for test case determination, test data selection, and expected results prediction, as well as interactive tools for test organization and regression testing. They are specialized on the respective activities and conducive to a systematic test. The classification-tree editor CTE is of special importance, because it supports a thorough and well structured test case determination corresponding to the classification-tree method. Test case execution, monitoring, test evaluation, and test documentation are executed automatically by TESSY (Table 2). First practical trials of the test system were successful and gave several indications of further improvements. Next, TESSY has to be proven in usual business. In the future, extensions for TESSY are planned to enable fully automated unit testing. Owing to the strengths and growing relevance of formal methods in software engineering the use of formal specification techniques is planned. This will enable computer-aided generation of classification trees and test cases as well as automatic generation of test data from formal test case specifications. The predicition of expected results will be supported by executable specifications. 14
15 Other fields of future work will be further support for integration and system testing as well as a test system version for Ada programs. Test Organization Test Case Determination Test Activities Supported by TESSY Test Data Selection Expected Results Prediction Test Case Execution Monitoring Test Evaluation Test Documentation V 1.0 tool supported (interactive) totally automated planned V 2.0 (planned) Table 2: Degree of automation by TESSY References Graham, D.R. (Ed.) (1991) Computer-Aided Software Testing: The CAST Report. Unicom Seminars Ltd., Middlesex, UK, Grochtmann, M., Grimm, K. (1993) Classification Trees for Partition Testing. Software Testing, Verification & Reliability, Volume 3, Number 2, June 1993, Wiley, pp Grochtmann, M., Wegener, J., Grimm, K. (1995) Test Case Design Using Classification Trees and the Classification-Tree Editor CTE. 8th International Software Quality Week, 30 May - 2 June 1995, San Francisco, California, USA, in this volume. Myers, G.J. (1979) The Art of Software Testing. John Wiley & Sons, Inc., Wegener, J., Pitschinetz, R., Grimm, K., Grochtmann, M. (1994) Tessy - Yet Another Computer-Aided Software Testing Tool? EuroSTAR 94-2nd European International Conference on Software Testing, Analysis, and Review, October 1994, Brussels, Belgium, pp. 36/1-36/13. 15
Test Case Design Using Classification Trees and the Classification-Tree Editor CTE
Quality Week 1995 Test Case Design Using Classification Trees and the Classification-Tree Editor CTE Matthias Grochtmann Joachim Wegener Klaus Grimm Daimler-Benz AG Research and Technology Alt-Moabit 96a
Test Case Design Using Classification Trees
STAR 94, 8-12 May 1994, Washington, D.C. Test Case Design Using Classification Trees Matthias Grochtmann Daimler-Benz AG Forschung und Technik Alt-Moabit 91b D-10559 Berlin, Germany Tel: +49 30 39 982-229
Test Case Design by Means of the CTE XL
Test Case Design by Means of the CTE XL Eckard Lehmann and Joachim Wegener DaimlerChrysler AG Research and Technology Alt-Moabit 96 a D-10559 Berlin [email protected] [email protected]
TESSY Automated dynamic module/unit and. CTE Classification Tree Editor. integration testing of embedded applications. for test case specifications
TESSY Automated dynamic module/unit and integration testing of embedded applications CTE Classification Tree Editor for test case specifications Automated module/unit testing and debugging at its best
Automatic Test Data Generation for TTCN-3 using CTE
Automatic Test Data Generation for TTCN-3 using CTE Zhen Ru Dai, Peter H. Deussen, Maik Busch, Laurette Pianta Lacmene, Titus Ngwangwen FraunhoferInstitute for Open Communication Systems (FOKUS) Kaiserin-Augusta-Allee
Unit Testing improves Software Quality Unit Testing and the Classification Tree Method
Building a safe and secure embedded world Unit Testing improves Software Quality Unit Testing and the Classification Tree Method > White Paper Frank Büchner Preface This White Paper is intended to give
Extend Table Lens for High-Dimensional Data Visualization and Classification Mining
Extend Table Lens for High-Dimensional Data Visualization and Classification Mining CPSC 533c, Information Visualization Course Project, Term 2 2003 Fengdong Du [email protected] University of British Columbia
Hitex Germany. White Paper. Unit Test of Embedded Software
Hitex Germany Head Quarters Greschbachstr. 12 76229 Karlsruhe Germany +049-721-9628-0 Fax +049-721-9628-149 E-mail: [email protected] WEB: www.hitex.de Hitex UK Warwick University Science Park Coventry CV47EZ
Introduction to LogixPro - Lab
Programmable Logic and Automation Controllers Industrial Control Systems I Introduction to LogixPro - Lab Purpose This is a self-paced lab that will introduce the student to the LogixPro PLC Simulator
TUTORIAL 4 Building a Navigation Bar with Fireworks
TUTORIAL 4 Building a Navigation Bar with Fireworks This tutorial shows you how to build a Macromedia Fireworks MX 2004 navigation bar that you can use on multiple pages of your website. A navigation bar
Auditing UML Models. This booklet explains the Auditing feature of Enterprise Architect. Copyright 1998-2010 Sparx Systems Pty Ltd
Auditing UML Models Enterprise Architect is an intuitive, flexible and powerful UML analysis and design tool for building robust and maintainable software. This booklet explains the Auditing feature of
APPROACHES TO SOFTWARE TESTING PROGRAM VERIFICATION AND VALIDATION
1 APPROACHES TO SOFTWARE TESTING PROGRAM VERIFICATION AND VALIDATION Validation: Are we building the right product? Does program meet expectations of user? Verification: Are we building the product right?
Bitrix Site Manager 4.1. User Guide
Bitrix Site Manager 4.1 User Guide 2 Contents REGISTRATION AND AUTHORISATION...3 SITE SECTIONS...5 Creating a section...6 Changing the section properties...8 SITE PAGES...9 Creating a page...10 Editing
2 SYSTEM DESCRIPTION TECHNIQUES
2 SYSTEM DESCRIPTION TECHNIQUES 2.1 INTRODUCTION Graphical representation of any process is always better and more meaningful than its representation in words. Moreover, it is very difficult to arrange
Pavement Management System Overview
TABLE OF CONTENTS The Home Screen... 3 The Gutter... 4 Icons... 4 Quick Links... 5 Miscellaneous... 6 PMS Menus... 7 Setup Menu... 7 Construction Setup... 7 1. Material Codes... 8 2. Standard Sections...
Getting Started Guide for the new Commander Owners Group Conferencing Software, vbulletin
Getting Started Guide for the new Commander Owners Group Conferencing Software, vbulletin For many years the COG used conferencing software from Akiva called WebBoard. However, in later years it became
Adding Links to Resources
Adding Links to Resources Use the following instructions to add resource links to your Moodle course. If you have any questions, please contact the helpdesk at. Adding URL links 1. Log into your Moodle
SAS Analyst for Windows Tutorial
Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating
Accounts Payable Back Office Reference Guide
Accounts Payable Back Office Reference Guide Version 4 Copyright Orion Law Management Systems, Inc. All rights reserved Printed in the United States of America www.orionlaw.com All Rights Reserved. No
Improved Software Testing Using McCabe IQ Coverage Analysis
White Paper Table of Contents Introduction...1 What is Coverage Analysis?...2 The McCabe IQ Approach to Coverage Analysis...3 The Importance of Coverage Analysis...4 Where Coverage Analysis Fits into your
Content Author's Reference and Cookbook
Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents
An Introduction to. Metrics. used during. Software Development
An Introduction to Metrics used during Software Development Life Cycle www.softwaretestinggenius.com Page 1 of 10 Define the Metric Objectives You can t control what you can t measure. This is a quote
Data Mining for Manufacturing: Preventive Maintenance, Failure Prediction, Quality Control
Data Mining for Manufacturing: Preventive Maintenance, Failure Prediction, Quality Control Andre BERGMANN Salzgitter Mannesmann Forschung GmbH; Duisburg, Germany Phone: +49 203 9993154, Fax: +49 203 9993234;
zen Platform technical white paper
zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant
Chapter 6 Experiment Process
Chapter 6 Process ation is not simple; we have to prepare, conduct and analyze experiments properly. One of the main advantages of an experiment is the control of, for example, subjects, objects and instrumentation.
Software testing. Objectives
Software testing cmsc435-1 Objectives To discuss the distinctions between validation testing and defect testing To describe the principles of system and component testing To describe strategies for generating
Mail Merge (Microsoft Office 2010)
Mail Merge (Microsoft Office 2010) Microsoft Word s 2010 mail merge feature allows users to create one document, such as a customer appreciation letter, promotional letter, or an employee appreciation
Bitrix Site Manager 4.0. Quick Start Guide to Newsletters and Subscriptions
Bitrix Site Manager 4.0 Quick Start Guide to Newsletters and Subscriptions Contents PREFACE...3 CONFIGURING THE MODULE...4 SETTING UP FOR MANUAL SENDING E-MAIL MESSAGES...6 Creating a newsletter...6 Providing
What Do You Think? for Instructors
Accessing course reports and analysis views What Do You Think? for Instructors Introduction As an instructor, you can use the What Do You Think? Course Evaluation System to see student course evaluation
SATA RAID Function. (Only For Chipset Sil 3112 /Sil 3512 Used) USER S MANUAL 12M E-SI3112-003
SATA RAID Function (Only For Chipset Sil 3112 /Sil 3512 Used) USER S MANUAL 12M E-SI3112-003 Copyright Copyright by GIGA-BYTE TECHNOLOGY CO., LTD. ( GBT ) No part of this manual may be reproduced or transmitted
AIMMS Tutorial for Professionals - Absentee and Planning Overviews
AIMMS Tutorial for Professionals - Absentee and Planning Overviews This file contains only one chapter of the book. For a free download of the complete book in pdf format, please visit www.aimms.com Aimms
How to create pop-up menus
How to create pop-up menus Pop-up menus are menus that are displayed in a browser when a site visitor moves the pointer over or clicks a trigger image. Items in a pop-up menu can have URL links attached
The W-MODEL Strengthening the Bond Between Development and Test
Andreas Spillner Dr. Spillner is working as Professor at the Hochschule Bremen (University of Applied Sciences) where he is responsible for software engineering and real time systems. Dr. Spillner has
Johannes Sametinger. C. Doppler Laboratory for Software Engineering Johannes Kepler University of Linz A-4040 Linz, Austria
OBJECT-ORIENTED DOCUMENTATION C. Doppler Laboratory for Software Engineering Johannes Kepler University of Linz A-4040 Linz, Austria Abstract Object-oriented programming improves the reusability of software
Introduction to Computers and Programming. Testing
Introduction to Computers and Programming Prof. I. K. Lundqvist Lecture 13 April 16 2004 Testing Goals of Testing Classification Test Coverage Test Technique Blackbox vs Whitebox Real bugs and software
SAS/GRAPH 9.2 ODS Graphics Editor. User s Guide
SAS/GRAPH 9.2 ODS Graphics Editor User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS/GRAPH 9.2: ODS Graphics Editor User's Guide. Cary, NC: SAS
Visualization of 2D Domains
Visualization of 2D Domains This part of the visualization package is intended to supply a simple graphical interface for 2- dimensional finite element data structures. Furthermore, it is used as the low
Acceptance Criteria. Software Engineering Group 6. 0/3/2012: Acceptance Criteria, v2.0 March 2012 - Second Deliverable
Acceptance Criteria Software Engineering Group 6 0/3/2012: Acceptance Criteria, v2.0 March 2012 - Second Deliverable 1 Contents: Page no: Introduction...3 Test Environment...4 Acceptance Tests...5 Types
PROCESS AUTOMATION PLANNING AND INTEGRATION INFORMATION LB8106* Integration in Siemens SIMATIC PCS 7
PROCESS AUTOMATION PLANNING AND INTEGRATION INFORMATION LB8106* Integration in Siemens SIMATIC PCS 7 With regard to the supply of products, the current issue of the following document is applicable: The
Chapter 32 Histograms and Bar Charts. Chapter Table of Contents VARIABLES...470 METHOD...471 OUTPUT...472 REFERENCES...474
Chapter 32 Histograms and Bar Charts Chapter Table of Contents VARIABLES...470 METHOD...471 OUTPUT...472 REFERENCES...474 467 Part 3. Introduction 468 Chapter 32 Histograms and Bar Charts Bar charts are
Using Flow Control with the HEAD Recorder
03/15 Using with the HEAD Recorder The HEAD Recorder is a data acquisition software program that features an editable Flow Control function. This function allows complex program sequences to be predefined,
Critical Limitations of Wind Turbine Power Curve Warranties
Critical Limitations of Wind Turbine Power Curve Warranties A. Albers Deutsche WindGuard Consulting GmbH, Oldenburger Straße 65, D-26316 Varel, Germany E-mail: [email protected], Tel: (++49) (0)4451/9515-15,
Access Tutorial 13: Event-Driven Programming Using Macros
Access Tutorial 13: Event-Driven Programming Using Macros 13.1 Introduction: What is eventdriven programming? In conventional programming, the sequence of operations for an application is determined by
WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT
WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live
Task Card #2 SMART Board: Notebook
Task Card #2 SMART Board: Notebook Objectives: Participants will learn how to utilize the SMART Notebook. Table of Contents: Launching The SMART Notebook Page 1 Entering Text Page 1 Top Toolbar Page 2
Formal Software Testing. Terri Grenda, CSTE IV&V Testing Solutions, LLC www.ivvts.com
Formal Software Testing Terri Grenda, CSTE IV&V Testing Solutions, LLC www.ivvts.com Scope of Testing Find defects early Remove defects prior to production Identify Risks Unbiased opinion When Should Testing
How to create buttons and navigation bars
How to create buttons and navigation bars Adobe Fireworks CS3 enables you to design the look and functionality of buttons, including links and rollover features. After you export these buttons from Fireworks,
TM SysAid Chat Guide Document Updated: 10 November 2009
SysAidTM Chat Guide Document Updated: 10 November 2009 Introduction 2 Quick Access to SysAid Chat 3 Enable / Disable the SysAid Chat from the End User Portal. 4 Edit the Chat Settings 5 Chat Automatic
How to Create a PDF Document
How to Create a PDF Document PDF Budget Book for SVPAA Meetings Steps Summarized #1. Download Adobe Acrobat Professional [Page 1]. #2. Prepare Document for Print [Page 2]. #3. Use the Various Options to
Going Interactive: Combining Ad-Hoc and Regression Testing
Going Interactive: Combining Ad-Hoc and Regression Testing Michael Kölling 1, Andrew Patterson 2 1 Mærsk Mc-Kinney Møller Institute, University of Southern Denmark, Denmark [email protected] 2 Deakin University,
D37.2 - Test Strategy
D37.2 - Test Strategy Client Testbed Document Identification Date 16/05/2013 Status Final Version 1.0 Related SP / WP Related Deliverable(s) Lead Participant Contributors SP3 / WP37 Document Reference
User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application
User Tutorial on Changing Frame Size, Window Size, and Screen Resolution for The Original Version of The Cancer-Rates.Info/NJ Application Introduction The original version of Cancer-Rates.Info/NJ, like
SIEMENS. Operating Web Server. Opening program and changing message text properties
With the new LOGO! 8 you can monitor and control your application via PC, smartphone or tablet via the integrated web server with all conventional browsers via the integrated web server. Opening program
Microsoft FrontPage 2003
Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State
Using the SAS Enterprise Guide (Version 4.2)
2011-2012 Using the SAS Enterprise Guide (Version 4.2) Table of Contents Overview of the User Interface... 1 Navigating the Initial Contents of the Workspace... 3 Useful Pull-Down Menus... 3 Working with
Writing a degree project at Lund University student perspectives
1 Writing a degree project at Lund University student perspectives Summary This report summarises the results of a survey that focused on the students experiences of writing a degree project at Lund University.
Test Design Strategies
Test Design Strategies Louise Tamres, CSQE ASQ Software Division Webinar 18 July 2008 1 Objectives Translate requirements into test cases Improve communication by producing models Identify incomplete requirements
Karunya University Dept. of Information Technology
PART A Questions 1. Mention any two software process models. 2. Define risk management. 3. What is a module? 4. What do you mean by requirement process? 5. Define integration testing. 6. State the main
EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators
EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...
IEEE ComputerSociety 1 Software and Systems Engineering Vocabulary
IEEE ComputerSociety 1 Software and Systems test item. (1) system or software item that is an object of testing (IEEE 829-2008 IEEE Standard for Software and System Test Documentation, 3.1.48) (2) work
Project Management with Enterprise Architect
Project Management with Enterprise Architect Enterprise Architect is an intuitive, flexible and powerful UML analysis and design tool for building robust and maintainable software. This booklet explains
EFFICIENT COMPLAINT MANAGEMENT WITH TARGENIO
EFFICIENT COMPLAINT MANAGEMENT WITH TARGENIO Content Targenio Use Case Complaint Process... 3 1. Handling of inbound processes... 3 2. Customer administration and contact history... 6 3. Register of customer
Software Testing. Definition: Testing is a process of executing a program with data, with the sole intention of finding errors in the program.
Software Testing Definition: Testing is a process of executing a program with data, with the sole intention of finding errors in the program. Testing can only reveal the presence of errors and not the
AutoCAD Civil 3D Profile Views, Data Bands, and Styles
AutoCAD Civil 3D Profile Views, Data Bands, and Styles Thomas Martin UDS Urbane Daten-Systeme GmbH Roman Börnchen UDS Urbane Daten-Systeme GmbH CI4513 How do I get a profile view that meets my expectations?
Windows XP Pro: Basics 1
NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has
SYSTEM DEVELOPMENT AND IMPLEMENTATION
CHAPTER 6 SYSTEM DEVELOPMENT AND IMPLEMENTATION 6.0 Introduction This chapter discusses about the development and implementation process of EPUM web-based system. The process is based on the system design
AnswerPath Version 5 User Guide Copyright 2014 Hindin Solutions Ltd. User Guide
AnswerPath Version 5 User Guide User Guide Disclaimer Copyright 2014 by Hindin Solutions Ltd. All rights reserved. This manual may not be copied, photocopied, reproduced, translated, or converted to any
Getting Started Guide
Page 2 of 9 Introduction This guide is designed to provide you with the information you need to complete your Payment Gateway account set up and begin processing live payment transactions. As a quick overview,
Crop and Frame Your Photos
Crop and Frame Your Photos Paint Shop Pro s crop tool gives you total control over your photo compositions. Cropping allows you to turn busy portraits into professional prints. And when you have a nicely
After you complete the survey, compare what you saw on the survey to the actual questions listed below:
Creating a Basic Survey Using Qualtrics Clayton State University has purchased a campus license to Qualtrics. Both faculty and students can use Qualtrics to create surveys that contain many different types
CA ERwin Process Modeler Data Flow Diagramming
CA ERwin Process Modeler Data Flow Diagramming Overview Guide r7.3 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user
UML-based Test Generation and Execution
UML-based Test Generation and Execution Jean Hartmann, Marlon Vieira, Herb Foster, Axel Ruder Siemens Corporate Research, Inc. 755 College Road East Princeton NJ 08540, USA [email protected] ABSTRACT
Concepts of digital forensics
Chapter 3 Concepts of digital forensics Digital forensics is a branch of forensic science concerned with the use of digital information (produced, stored and transmitted by computers) as source of evidence
Navios Quick Reference
Navios Quick Reference Purpose: The purpose of this Quick Reference is to provide a simple step by step outline of the information needed to perform various tasks on the system. We begin with basic tasks
Microsoft Office Live Meeting Events User s Guide
Microsoft Office Live Meeting Events User s Guide Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless otherwise noted, the companies,
User Manual Sitecore Content Manager
User Manual Sitecore Content Manager Author: Sitecore A/S Date: November 2003 Release: Revision 4.3 Language: English Sitecore is a trademark of Sitecore A/S. All other brand and product names are the
A Graphical User Interface Testing Methodology
A Graphical User Interface Testing Methodology Ellis Horowitz and Zafar Singhera Department of Computer Science University of Southern California Los Angeles, California 90089-0781 USC-CS-93-550 Abstract
Software Module Test for an Electronic Steering Lock
Software Module Test for an Electronic Steering Lock Wolfgang Beer, Dr. Peter Jüttner, Daniel Simonis (external subcontractor), Siemens VDO Automotive AG Siemensstr. 12 93055 Regensburg, Germany Tel.:
User Recognition and Preference of App Icon Stylization Design on the Smartphone
User Recognition and Preference of App Icon Stylization Design on the Smartphone Chun-Ching Chen (&) Department of Interaction Design, National Taipei University of Technology, Taipei, Taiwan [email protected]
Visual Dialogue User Guide. Version 6.1
Visual Dialogue User Guide Version 6.1 2015 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its
There are six different windows that can be opened when using SPSS. The following will give a description of each of them.
SPSS Basics Tutorial 1: SPSS Windows There are six different windows that can be opened when using SPSS. The following will give a description of each of them. The Data Editor The Data Editor is a spreadsheet
Universal Tracking Application Reference and Training Guide
Universal Tracking Application Reference and Training Guide Software Version: 4.21 Guide Version: 2.7 Universal Tracking Application Reference and Training Guide Reference and Training Guide All Trademarks
NHA. User Guide, Version 1.0. Production Tool
NHA User Guide, Version 1.0 Production Tool Welcome to the National Health Accounts Production Tool National Health Accounts (NHA) is an internationally standardized methodology that tracks public and
Reverse Literate Programming
Reverse Literate Programming Markus Knasmüller Johannes Kepler University Linz Altenbergerstraße 39 Linz, 4040, Austria Tel. +43 732 2468 7133 Fax +43 732 2468 7138 Internet [email protected]
Module 10. Coding and Testing. Version 2 CSE IIT, Kharagpur
Module 10 Coding and Testing Lesson 26 Debugging, Integration and System Testing Specific Instructional Objectives At the end of this lesson the student would be able to: Explain why debugging is needed.
Guide To Creating Academic Posters Using Microsoft PowerPoint 2010
Guide To Creating Academic Posters Using Microsoft PowerPoint 2010 INFORMATION SERVICES Version 3.0 July 2011 Table of Contents Section 1 - Introduction... 1 Section 2 - Initial Preparation... 2 2.1 Overall
Smart Connection 9 Element Labels
08 Smart Connection 9 Element Labels This document is part of the documentation for Smart Connection 9 and is an extract from the former Smart Connection 9 User Guide for InDesign. For more information
CUSTOMER+ PURL Manager
CUSTOMER+ PURL Manager October, 2009 CUSTOMER+ v. 5.3.1 Section I: Creating the PURL 1. Go to Administration > PURL Management > PURLs 2. Click Add Personalized URL 3. In the Edit PURL screen, Name your
Test case design techniques II: Blackbox testing CISS
Test case design techniques II: Blackbox testing Overview Black-box testing (or functional testing): Equivalence partitioning Boundary value analysis Domain analysis Cause-effect graphing Behavioural testing
INTEGRATED BUDGET INFORMATION SYSTEM (IBIS) USER GUIDE FORM WORKFLOW AND PDF OVERVIEW
INTEGRATED BUDGET INFORMATION SYSTEM (IBIS) USER GUIDE FORM WORKFLOW AND PDF OVERVIEW Page 1 TABLE OF CONTENTS 1. Generating PDF 2. Saving a Draft 3. Saving and Closing a Form 4. Deleting a Request 5.
Inventory Computers Using TechAtlas for Libraries
Inventory Computers Using TechAtlas for Libraries WebJunction.org 9/11/2008 Table of Contents Introduction... 3 Additional Resources... 3 Your Computer Login... 3 TechAtlas Login... 3 Browser Options...
Application Note - How to Design a SolarEdge System Using PVsyst
March 2015 Application Note - How to Design a SolarEdge System Using PVsyst As of version 5.20, PVsyst - the PV system design software - supports the design of SolarEdge systems. This application note
