BugMaps-Granger: A Tool for Causality Analysis between Source Code Metrics and Bugs
|
|
|
- Doris Lawrence
- 10 years ago
- Views:
Transcription
1 BugMaps-Granger: A Tool for Causality Analysis between Source Code Metrics and Bugs César Couto 1,2, Pedro Pires 1, Marco Túlio Valente 1, Roberto S. Bigonha 1, Andre Hora 3, Nicolas Anquetil 3 1 Department of Computer Science UFMG Brazil 2 Department of Computing CEFET-MG Brazil 3 RMoD Team INRIA France {cesarfmc,ppires,mtov,bigonha}@dcc.ufmg.br,{firstname.lastname}@inria.fr Abstract. Despite the increasing number of bug analysis tools for exploring bugs in software systems, there are no tools supporting the investigation of causality relationships between internal quality metrics and bugs. In this paper, we propose an extension of the BugMaps tool called BugMaps-Granger that allows the analysis of source code properties that caused bugs. For this purpose, we relied on Granger Causality Test to evaluate whether past changes to a given time series of source code metrics can be used to forecast changes in a time series of defects. Our tool extracts source code versions from version control platforms, generates source code metrics and defects time series, computes Granger, and provides interactive visualizations for causal analysis of bugs. We also provide a case study in order to evaluate the tool. 1. Introduction A number of tools for software analysis has been proposed recently to improve software quality [Nierstrasz et al. 2005, Hovemeyer and Pugh 2004, Wettel 2009]. Such tools use different types of information about software system structure and history. Basically, they can be used to analyze software evolution, manage the quality of the source code, compute metrics, analyze coding rules, etc. In general, such tools help software maintainers to understand large amounts of data coming from source code repositories. Particularly, there is a growing interest in software analysis tools for exploring bugs in software systems [Hora et al. 2012, D Ambros and Lanza 2010, Sliwerski et al. 2005]. Such tools help maintainers understand the distribution, the evolutionary behavior, the lifetime, and the stability of bugs. Basically, they work by retrieving history data from bug tracking and version control platforms, by mapping bugs to defects in source code modules, and by processing data to extract and reason about bugs. Despite the increasing number of bug analysis tools, they typically do not provide mechanisms for assessing the existence of correlations between the internal quality of a software system and the occurrence of bugs. To the best of our knowledge, there are no bug analysis tools that investigate and highlight possible causes for the occurrence of bugs in source code modules of a system. More specifically, there are no tools designed to infer causal relations between source code properties (as measured by source code metrics) and defect occurrences in object-oriented classes.
2 In this paper, we propose and describe the BugMaps-Granger tool an extension of the BugMaps tool [Hora et al. 2012] that supports detection of causal relations between source code metrics and bugs. Basically, this tool provides mechanisms to retrieve software repositories data, to compute source code metrics, to generate source code metrics and defect time series, and to infer causal relations between source code properties and defects. Moreover, BugMaps-Granger provides visualizations for decision support. More specifically, to identify causal relations on the time series of source code metrics and defects, our tool relies on the Granger Causality Test [Granger 1981]. Such test evaluates whether past changes to a given time series of source code metrics can be used to forecast changes in a time series of defects. The proposed tool has the following features: The tool automatically extracts source code models of the target system from its version control platform in predefined time intervals. The tool generates time series of twelve source code metrics and time series with the number of defects in each class of the target system. The tool applies the Granger Test considering the metrics and defects time series to identify causal relations. The tool integrates models extracted from the source code with models that represent the number of bugs. The tool provides a set of interactive visualizations that supports software maintainers in answering questions such as: (a) What is the number of bugs in a module? (b) What are the modules usually involved in bug-fixing? (c) What are the source code properties that Granger-caused bugs in a given module? and (d) What is the lifetime of a bug? 2. BugMaps-Granger: Overview The execution of the BugMaps-Granger tool is divided into two stages: preprocessing and visualization. The preprocessing stage is responsible for extracting source code models, creating time series, and applying the Granger Test to identify possible causal relations between source code metrics and bugs. In the visualization stage, the user can interact with the tool. In this stage, the user can localize the most defective classes of the target system and visualize the source code properties that Granger-caused bugs. The system requirements to execute the tool are: (i) Java-based systems; (ii) identifiers and creation dates of bugs stored in a csv file; and (iii) URL of the version control platform (SVN or GIT). Figure 1 shows the architecture of the BugMaps-Granger, which includes the following modules: Model Extraction: This module receives as input the URL associated to the version control platform of the target system and a time interval used in the analysis of the bugs. To extract the source code models, this module performs the following sub-procedures: (a) it extracts the source code versions from the version control platforms in intervals of bi-weeks; (b) it removes test classes. In order to remove test classes, this module removes the directories and subdirectories whose name starts with the words Test or test ; and (c) it parses the source code versions and generates MSE files using the VerveineJ tool 1. MSE is the default file format supported by the Moose platform 2 to persist source code models
3 Figure 1. BugMaps-Granger s architecture Time Series Creation: To create the time series of source code metrics, this module receives as input the models extracted by the previous module. For each class of each extracted model, the module relies again on the Moose platform to compute twelve source code metrics including six CK metrics (proposed by Chidamber e Kemerer [Chidamber and Kemerer 1994]) and five others, such as lines of code, fan-in, fanout etc. To create the time series of defects for each class, this module receives as input a csv file containing the BUG-IDs and the bug creation dates collected from the bug tracking platforms of the target system. Basically, this module maps the bugs to their respective commits using the BUG-ID. Next, the files changed by such commits are used to identify the classes changed to fix the respective bugs (i.e., the defective classes). More details can be checked in [Couto et al. 2012]. Granger Test Module: This module applies the Granger Causality Test considering the metrics and defects time series. More specifically, Granger is responsible for identifying causal relations on time series of source code metrics and defects. To apply the test, this module relies on the function granger.test() provided by the msbvar package from the R statistical system. More details about the Granger Test and the algorithm used to identify causal relations can also be checked in [Couto et al. 2012]. Visualization Module: This module receives as input a file containing the bugs mapped to their respective classes and the result of the Granger Test, a model extracted from the last source code version, and the source code itself of the system under analysis. From such informations, the module provides interactive visualization browsers. Two browsers are used for analysis, the first one deals with the classes, the number of bugs, and the Granger results of the system under analysis (called Granger browser) and the second one deals with the complexity of the bugs (called Bug as Entity browser). Such browsers are implemented in Pharo (a Smalltalk dialect), using visualization packages provided by the Moose Platform. Figure 2(a) shows the Granger browser, which has four panes: visualization of classes and packages (top left), measures (top right), Granger results (bottom left), and source codes (bottom right) 3. Metrics, source codes, and Granger results are updated according to the selected class in the classes and packages pane. Figure 2(b) shows the Bug as Entity browser which is composed by two panes: visualization of classes and packages (left pane) and bugs (right pane). When a defective class is selected, the bugs in this class are colored in black. In contrast, when a bug is selected, the classes changed to fix this bug also are colored in black. The visualizations provided by BugMaps-Granger are based on Distribution Map, a generic technique to reason about the results of software analysis and to investigate how 3 Since most of our visualizations make use of colors, we provide high-resolutions versions of these figures in a companion website (
4 (a) Granger browser (b) Bug as Entity browser Figure 2. BugMaps-Granger s browsers a given phenomenon is distributed across a software system [Ducasse et al. 2006]. Using a Distribution Map three metrics can be displayed through the height, width and color of the objects in the map. In our maps, rectangles represent classes or bugs and containers represent packages. 3. Case Study: Eclipse Equinox Framework In order to evaluate BugMaps-Granger, we provide an example of use involving data from the Eclipse Equinox Framework system collected during three years ( to ). First, the tool extracted 79 source code versions in intervals of bi-weeks, including 417 classes. Next, for each class, the tool created twelve time series of source code metrics (one for each metric) and one time series of defects. Finally, for each pair of time series (source code metrics and defects), the tool applied the Granger Test to identify causal relations. We analyzed the Equinox Framework system according to the proposed visualizations, which are showed in the Figures 3 and 4. Granger: In this map, the objects are the classes of the target system. The color of a class represents the number of bugs detected through its history ranging from green to red (the closer to red, more bugs the class had in its history). By selecting a defective class, the bottom pane is updated showing the source code metrics that Grangercaused bugs in this class. Figure 3 provides an overview of the distribution of the bugs in the Eclipse Equinox Framework system. We can observe that the resolver package contains a significant number of classes with bugs. Moreover, for the class
5 org.eclipse.osgi.internal.resolver.stateimpl, we can observe that the source code metrics that Granger-caused bugs were CBO (Coupling between object class), WMC (Weighted methods per class), and RFC (Response for class). Figure 3. Granger result per class Bug as Entity: This map represents bugs instead of classes. The color of a bug represents its lifetime, i.e., the number of days it remained opened. Blue denotes a bug that was still open at the end of the time period considered. In the analysis, white denotes a bug that was open for a short time. Simirlarly, yellow is a bug that was open up to 3 months, and red is a bug that was opened for more than 3 months. The width of a bug representation denotes its complexity, measured as the number of classes changed to fix the bug. Bugs are sorted according to the date they were created. Figure 4 shows the bugs of the Equinox Framework created in We can observe that all bugs from 2010 were fixed, only two bugs remained openfor more than 3 months (bugs going to red), and that complex bugs (long width) are dispersed in time. In a detailed analysis, we can note that the bug is quite complex. In this specific case, 191 classes were changed to fix this bug. According to this bug description: Update Framework source code for generics, we can conclude that this bug is related to a complex task that involved a major change in the system. Figure 4. Bug as entity 4. Related Work Churrasco is a web-based tool for collaborative software evolution analysis [D Ambros and Lanza 2010]. The tool automatically extracts information from a variety of software repositories, including versioning systems and bug management systems. The ultimate goal is to provide an extensible tool that can be used to reason
6 about software evolution under different perspectives, including the behavior of bugs. In contrast, BugMaps-Granger provides information about source code properties (as measured by source code metrics) that caused bugs, at least according to Granger. Hatari [Sliwerski et al. 2005] is a tool that provides views to browse through the most risky locations and to analyze the risk history of a particular location in a system at the level of lines of code. On the other hand, BugMaps-Granger works at the level of classes and packages. 5. Conclusions In this paper we proposed a tool to support the extraction and statistical and visual analysis of bugs stored in bug-tracking systems. The tool extracts time series of defects from such systems and allows the visualization of different bug measures including the source code properties that Granger-caused bugs. Its ultimate goal is to indicate the classes of the target system that are more subjected to bugs and the source code metrics that statistically can be used to antecipate the occurrence of bugs in such classes. The proposed tool is publicly available at: Acknowledgment: This work was supported by FAPEMIG, CNPQ and INRIA. References Chidamber, S. R. and Kemerer, C. F. (1994). A metrics suite for object oriented design. IEEE Transactions on Software Engineering, 20(6): Couto, C., Silva, C., Valente, M. T., Bigonha, R., and Anquetil, N. (2012). Uncovering causal relationships between software metrics and bugs. In European Conference on Software Maintenance and Reengineering (CSMR), pages D Ambros, M. and Lanza, M. (2010). Distributed and collaborative software evolution analysis with churrasco. Science of Computer Programming, 75(4): Ducasse, S., Girba, T., and Kuhn, A. (2006). Distribution Map. In International Conference on Software Maintenance (ICSM), pages Granger, C. (1981). Some properties of time series data and their use in econometric model specification. Journal of Econometrics, 16(6): Hora, A., Couto, C., Anquetil, N., Ducasse, S., Bhatti, M., Valente, M. T., and Martins, J. (2012). Bugmaps: A tool for the visual exploration and analysis of bugs. In European Conference on Software Maintenance and Reengineering (CSMR Tool Demonstration). Hovemeyer, D. and Pugh, W. (2004). Finding bugs is easy. SIGPLAN Notices, 39(12): Nierstrasz, O., Ducasse, S., and Gǐrba, T. (2005). The story of Moose: an agile reengineering environment. In European Software Engineering Conference (ESEC), pages Sliwerski, J., Zimmermann, T., and Zeller, A. (2005). Hatari: Raising risk awareness. In European Software Engineering Conference (ESEC), pages Wettel, R. (2009). Visual exploration of large-scale evolving software. In International Conference on Software Engineering (ICSE), pages
BugMaps-Granger: a tool for visualizing and predicting bugs using Granger causality tests
Couto et al. Journal of Software Engineering Research and Development 2014, 2:1 SOFTWARE Open Access BugMaps-Granger: a tool for visualizing and predicting bugs using Granger causality tests Cesar Couto
Program Understanding with Code Visualization
Program Understanding with Code Visualization Arif Iftikhar Department of Computer Science National University of Computer and Emerging Sciences 852-B Faisal Town, Lahore, Pakistan [email protected]
A Visualization Approach for Bug Reports in Software Systems
, pp. 37-46 http://dx.doi.org/10.14257/ijseia.2014.8.10.04 A Visualization Approach for Bug Reports in Software Systems Maen Hammad 1, Somia Abufakher 2 and Mustafa Hammad 3 1, 2 Department of Software
JSClassFinder: A Tool to Detect Class-like Structures in JavaScript
JSClassFinder: A Tool to Detect Class-like Structures in JavaScript Leonardo Humberto Silva 1, Daniel Hovadick 2, Marco Tulio Valente 2, Alexandre Bergel 3,Nicolas Anquetil 4, Anne Etien 4 1 Department
OrionPlanning: Improving Modularization and Checking Consistency on Software Architecture
OrionPlanning: Improving Modularization and Checking Consistency on Software Architecture Gustavo Santos, Nicolas Anquetil, Anne Etien, and Stéphane Ducasse RMoD Team INRIA, Lille, France {firstname.lastname}@inria.fr
Empirical study of software quality evolution in open source projects using agile practices
1 Empirical study of software quality evolution in open source projects using agile practices Alessandro Murgia 1, Giulio Concas 1, Sandro Pinna 1, Roberto Tonelli 1, Ivana Turnu 1, SUMMARY. 1 Dept. Of
VISUALIZATION APPROACH FOR SOFTWARE PROJECTS
Canadian Journal of Pure and Applied Sciences Vol. 9, No. 2, pp. 3431-3439, June 2015 Online ISSN: 1920-3853; Print ISSN: 1715-9997 Available online at www.cjpas.net VISUALIZATION APPROACH FOR SOFTWARE
Software Engineering & Architecture
Software Engineering & Architecture 11. QUALITY METRICS AND VISUALIZATION Martin Kropp University of Applied Sciences Northwestern Switzerland Institute for Mobile and Distributed Systems References Some
EVALUATING METRICS AT CLASS AND METHOD LEVEL FOR JAVA PROGRAMS USING KNOWLEDGE BASED SYSTEMS
EVALUATING METRICS AT CLASS AND METHOD LEVEL FOR JAVA PROGRAMS USING KNOWLEDGE BASED SYSTEMS Umamaheswari E. 1, N. Bhalaji 2 and D. K. Ghosh 3 1 SCSE, VIT Chennai Campus, Chennai, India 2 SSN College of
NextBug: A Tool for Recommending Similar Bugs in Open-Source Systems
NextBug: A Tool for Recommending Similar Bugs in Open-Source Systems Henrique S. C. Rocha 1, Guilherme A. de Oliveira 2, Humberto T. Marques-Neto 2, Marco Túlio O. Valente 1 1 Department of Computer Science
Quality prediction model for object oriented software using UML metrics
THE INSTITUTE OF ELECTRONICS, INFORMATION AND COMMUNICATION ENGINEERS TECHNICAL REPORT OF IEICE. UML Quality prediction model for object oriented software using UML metrics CAMARGO CRUZ ANA ERIKA and KOICHIRO
DAHLIA: A Visual Analyzer of Database Schema Evolution
DAHLIA: A Visual Analyzer of Database Schema Evolution Loup Meurice and Anthony Cleve PReCISE Research Center, University of Namur, Belgium {loup.meurice,anthony.cleve}@unamur.be Abstract In a continuously
The Class Blueprint A Visualization of the Internal Structure of Classes
The Class Blueprint A Visualization of the Internal Structure of Classes Michele Lanza Software Composition Group University Of Bern Bern, Switzerland [email protected] Stéphane Ducasse Software Composition
CodeCrawler An Extensible and Language Independent 2D and 3D Software Visualization Tool
CodeCrawler An Extensible and Language Independent 2D and 3D Software Visualization Tool Michele Lanza Software Engineering Group Department of Informatics University of Zurich, Switzerland Stéphane Ducasse
Percerons: A web-service suite that enhance software development process
Percerons: A web-service suite that enhance software development process Percerons is a list of web services, see http://www.percerons.com, that helps software developers to adopt established software
IMPROVING JAVA SOFTWARE THROUGH PACKAGE STRUCTURE ANALYSIS
IMPROVING JAVA SOFTWARE THROUGH PACKAGE STRUCTURE ANALYSIS Edwin Hautus Compuware Europe P.O. Box 12933 The Netherlands [email protected] Abstract Packages are an important mechanism to decompose
Program Understanding in Software Engineering
Taming the complexity: The need for program understanding in software engineering Raghvinder S. Sangwan, Ph.D. Pennsylvania State University, Great Valley School of Graduate Professional Studies Robert
What Questions Developers Ask During Software Evolution? An Academic Perspective
What Questions Developers Ask During Software Evolution? An Academic Perspective Renato Novais 1, Creidiane Brito 1, Manoel Mendonça 2 1 Federal Institute of Bahia, Salvador BA Brazil 2 Fraunhofer Project
Génie Logiciel et Gestion de Projets. Evolution
Génie Logiciel et Gestion de Projets Evolution 1 Roadmap Evolution: definitions Re-engineering Legacy systems Reverse engineering Software Visualisation Re-engineering Patterns 2 Evolution: Definitions
Baseline Code Analysis Using McCabe IQ
White Paper Table of Contents What is Baseline Code Analysis?.....2 Importance of Baseline Code Analysis...2 The Objectives of Baseline Code Analysis...4 Best Practices for Baseline Code Analysis...4 Challenges
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
Quantitative Evaluation of Software Quality Metrics in Open-Source Projects
Quantitative Evaluation of Software Quality Metrics in Open-Source Projects Henrike Barkmann Rüdiger Lincke Welf Löwe Software Technology Group, School of Mathematics and Systems Engineering Växjö University,
Integrating Service Oriented MSR Framework and Google Chart Tools for Visualizing Software Evolution
2012 Fourth International Workshop on Empirical Software Engineering in Practice Integrating Service Oriented MSR Framework and Google Chart Tools for Visualizing Software Evolution Yasutaka Sakamoto,
The Evolution of Mobile Apps: An Exploratory Study
The Evolution of Mobile Apps: An Exploratory Study Jack Zhang, Shikhar Sagar, and Emad Shihab Rochester Institute of Technology Department of Software Engineering Rochester, New York, USA, 14623 {jxz8072,
Nirikshan: Process Mining Software Repositories to Identify Inefficiencies, Imperfections, and Enhance Existing Process Capabilities
Nirikshan: Process Mining Software Repositories to Identify Inefficiencies, Imperfections, and Enhance Existing Process Capabilities Monika Gupta [email protected] PhD Advisor: Dr. Ashish Sureka Industry
Stéphane Ducasse. 43 years INRIA Lille Nord Europe- LIFL/USTL - CNRS UMR8022
Stéphane Ducasse Senior Researcher (Directeur de recherche) 43 years INRIA Lille Nord Europe- LIFL/USTL - CNRS UMR8022 mailto:[email protected] + 33 (0)3 20 43 42 56 http://stephane.ducasse.free.fr
Simulating the Structural Evolution of Software
Simulating the Structural Evolution of Software Benjamin Stopford 1, Steve Counsell 2 1 School of Computer Science and Information Systems, Birkbeck, University of London 2 School of Information Systems,
Software Metrics as Benchmarks for Source Code Quality of Software Systems
Software Metrics as Benchmarks for Source Code Quality of Software Systems Julien Rentrop August 31, 2006 One Year Master Course Software Engineering Thesis Supervisor: Dr. Jurgen Vinju Internship Supervisor:
Software visualization. Why visualization?
Software visualization Tudor Gîrba www.tudorgirba.com Software Visualization is the use of typography, graphic design, animation, and cinematography with human-computer interaction and computer graphics
Software Engineering Process. Kevin Cathey
Software Engineering Process Kevin Cathey Where are we going? Last Week iphone Application Technologies Workshop This Week Software Engineering Process Thanksgiving Break Write some code, yo 2 Dec Options:
Load testing with. WAPT Cloud. Quick Start Guide
Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica
Mining a Change-Based Software Repository
Mining a Change-Based Software Repository Romain Robbes Faculty of Informatics University of Lugano, Switzerland 1 Introduction The nature of information found in software repositories determines what
XpoLog Center Suite Log Management & Analysis platform
XpoLog Center Suite Log Management & Analysis platform Summary: 1. End to End data management collects and indexes data in any format from any machine / device in the environment. 2. Logs Monitoring -
Creating and Using Links and Bookmarks in PDF Documents
Creating and Using Links and Bookmarks in PDF Documents After making a document into a PDF, there may be times when you will need to make links or bookmarks within that PDF to aid navigation through the
Does the Act of Refactoring Really Make Code Simpler? A Preliminary Study
Does the Act of Refactoring Really Make Code Simpler? A Preliminary Study Francisco Zigmund Sokol 1, Mauricio Finavaro Aniche 1, Marco Aurélio Gerosa 1 1 Department of Computer Science University of São
The «SQALE» Analysis Model An analysis model compliant with the representation condition for assessing the Quality of Software Source Code
The «SQALE» Analysis Model An analysis model compliant with the representation condition for assessing the Quality of Software Source Code Jean-Louis Letouzey DNV IT Global Services Arcueil, France [email protected]
ARCHITECTURE FOR INTEGRATING A WEB-BASED IDE AND A PROJECT MANAGEMENT SYSTEM
ARCHITECTURE FOR INTEGRATING A WEB-BASED IDE AND A PROJECT MANAGEMENT SYSTEM Arnold Choa 1, Linda Chua 1, Kevin See 1, Alvin Uy 1, Danny Cheng 2 1 Software Technology College of Computer Studies, De La
Open Source Software: How Can Design Metrics Facilitate Architecture Recovery?
Open Source Software: How Can Design Metrics Facilitate Architecture Recovery? Eleni Constantinou 1, George Kakarontzas 2, and Ioannis Stamelos 1 1 Computer Science Department Aristotle University of Thessaloniki
Chapter 24 - Quality Management. Lecture 1. Chapter 24 Quality management
Chapter 24 - Quality Management Lecture 1 1 Topics covered Software quality Software standards Reviews and inspections Software measurement and metrics 2 Software quality management Concerned with ensuring
Processing and data collection of program structures in open source repositories
1 Processing and data collection of program structures in open source repositories JEAN PETRIĆ, TIHANA GALINAC GRBAC AND MARIO DUBRAVAC, University of Rijeka Software structure analysis with help of network
Exploiting Dynamic Information in IDEs Eases Software Maintenance
Exploiting Dynamic Information in IDEs Eases Software Maintenance David Röthlisberger Software Composition Group, University of Bern, Switzerland [email protected] Abstract The integrated development
Assisting bug Triage in Large Open Source Projects Using Approximate String Matching
Assisting bug Triage in Large Open Source Projects Using Approximate String Matching Amir H. Moin and Günter Neumann Language Technology (LT) Lab. German Research Center for Artificial Intelligence (DFKI)
Rational Team Concert. Quick Start Tutorial
Rational Team Concert Quick Start Tutorial 1 Contents 1. Introduction... 3 2. Terminology... 4 3. Project Area Preparation... 5 3.1 Defining Timelines and Iterations... 5 3.2 Creating Team Areas... 8 3.3
Mail Programming Topics
Mail Programming Topics Contents Introduction 4 Organization of This Document 4 Creating Mail Stationery Bundles 5 Stationery Bundles 5 Description Property List 5 HTML File 6 Images 8 Composite Images
Smart Web. User Guide. Amcom Software, Inc.
Smart Web User Guide Amcom Software, Inc. Copyright Version 4.0 Copyright 2003-2005 Amcom Software, Inc. All Rights Reserved. Information in this document is subject to change without notice. The software
STRATEGIC FINANCIAL PLANNING AND FORECASTING
STRATEGIC FINANCIAL PLANNING AND FORECASTING PLAN-TO-PERFORM BLUEPRINT A WEB BASED PLANNING PROCESS FOR INCOME STATEMENT, BALANCE SHEET AND CASH FLOW VERSION 1.0 EXECUTIVE SUMMARY Solution map This application
Unemployment Insurance Data Validation Operations Guide
Unemployment Insurance Data Validation Operations Guide ETA Operations Guide 411 U.S. Department of Labor Employment and Training Administration Office of Unemployment Insurance TABLE OF CONTENTS Chapter
WEBMAIL User s Manual
WEBMAIL User s Manual Overview What it is: What it is not: A convenient method of retrieving and sending mails while you re away from your home computer. A sophisticated mail client meant to be your primary
Big Data: Rethinking Text Visualization
Big Data: Rethinking Text Visualization Dr. Anton Heijs [email protected] Treparel April 8, 2013 Abstract In this white paper we discuss text visualization approaches and how these are important
Aspect Mining in Procedural Object-Oriented Code
Aspect Mining in Procedural Object-Oriented Code Muhammad Usman BHATTI 1 Stéphane DUCASSE 2 Awais RASHID 3 1 CRI, Université de Paris 1 Sorbonne, France 2 INRIA - Lille Nord Europe, France 3 Computing
Assisting bug Triage in Large Open Source Projects Using Approximate String Matching
Assisting bug Triage in Large Open Source Projects Using Approximate String Matching Amir H. Moin and Günter Neumann Language Technology (LT) Lab. German Research Center for Artificial Intelligence (DFKI)
How To Validate An Isos 9126 Quality Model
Validation of a Standard- and Metric-Based Software Quality Model Rüdiger Lincke and Welf Löwe School of Mathematics and Systems Engineering, Växjö University, 351 95 Växjö, Sweden {rudiger.lincke welf.lowe}@msi.vxu.se
Open Source Tools. The Magazine for Professional Testers. December 2010
12 December 2010 ISSN 1866-5705 www.testingexperience.com free digital version print version 8,00 printed in Germany Open Source Tools diego cervo - Fotolia.com karaboux - Fotolia.com Take a daily photo
How To Test A Web Based Application Automatically
A General Framework for Testing Web-Based Applications Saeed Abrishami, Mohsen Kahani Computer Engineering Department, Ferdowsi University of Mashhad [email protected] r, [email protected] Abstract Software
Chapter 9 Software Evolution
Chapter 9 Software Evolution Summary 1 Topics covered Evolution processes Change processes for software systems Program evolution dynamics Understanding software evolution Software maintenance Making changes
International Journal of Software Engineering and Knowledge Engineering c World Scientific Publishing Company
International Journal of Software Engineering and Knowledge Engineering c World Scientific Publishing Company Rapid Construction of Software Comprehension Tools WELF LÖWE Software Technology Group, MSI,
Call Graph Based Metrics To Evaluate Software Design Quality
Call Graph Based Metrics To Evaluate Software Design Quality Hesham Abandah 1 and Izzat Alsmadi 2 1 JUST University; 2 Yarmouk University [email protected], [email protected] Abstract Software defects
