SlideShare a Scribd company logo
5th World Congress for Software Quality – Shanghai, China – November 2011

Quality Improvement by the Real-Time Detection of the Problems
--- DevCast (Development Forecast) for the Failure Project Prevention --Takanori Suzuki
Acroquest Technology Co., Ltd.
Kanagawa, Japan
takanori@acroquest.co.jp
Abstract
In software development, the quantitative management might be actually insufficient because of the
influence of the analysis relied on individual.
For example, usual manager of quality assurance judge the level of software quality by the defect density
and the defect convergence. However, the testing results is depends on the precision of test items and the
skill of testers, etc. Therefore it is difficult to evaluate software quality by the testing results.
For improving such a case, it is necessary that the quality is analyzed in real-time and the projects failure
risks are found beforehand.
In this document, I evaluated the effectiveness of multilateral static analysis and the relationship of them
with the testing results.

1. Introduction
Only 30% of software development projects can succeed in Japanese software development industry[1].
The success means to manage the software development project within planed quality, cost and delivery.
The others, 70% of software development projects cannot finish within the planned criteria. Such situation is
seriously abnormal compared with other industries. However, this situation is not only in Japan, but also in
other countries and these worse situation are not changed in several years[2].
Quality Assurance and Quality Improvement for software development always be the most important field,
but the big improvement has not come yet because of no effective ways in several decades.
Especially, the reasons of failure of recent software development projects are the quality problems. In
addition to that, the quality problem affects not only developers and customers, but also the society using
the software.
Therefore, I focused on the software quality and propose the method to detect and correct the quality
problems in real-time.

2. Invisible quality problem
We usually use metrics to evaluate quality in software test. The representative metrics are defect density
(number of defects per volume of codes) and defect convergence (total number of defects per expected
number of defect). These metrics are independent from test items, reliability of test items and precision of
testing.
We have to consider the following factors for evaluation criteria of test completion.
・
・
・
・

Quality of input specification
Quality of test items
Quality of defect
Quality of tester
5th World Congress for Software Quality – Shanghai, China – November 2011

However, it is difficult to consider these all factors. Therefore, many software products which satisfied
criteria in the certain process still include many defects rather than expected.

Figure 1. Test completion and factors for it
QCD(Q:Quality C:Cost D:Delivery) is the basic index for projects management. It is easy to calculate Cost
and Delivery. However it is difficult to calculate Quality with simple metrics. That is why it is difficult to detect
quality problems and it is almost too late to correct them if you can find out. In actual development site, the
priority of quality is usually lower against cost and delivery.

Figure 2. The gap between the ideal and the reality in a test process

Quality Improvement by the Real-Time Detection of the Problems
--- DevCast (Development Forecast) for the Failure Project Prevention ---

Page 2 of 6
5th World Congress for Software Quality – Shanghai, China – November 2011

For breaking through these situations, we need a method with which we judge actual quality of software
product in real-time, and predict the future problem and correct them.

3. "Development Forecast" approach
PDCA, cyclic management style, was made popular by Walter A. Schewhart and Dr. W. Edwards Deming,
in 1950's[3], and applied for software engineering.
However, In today's software development projects being made to large scale, being shortened for the
schedule, being needed to keep rapid-changing technical-elements, every day, being decentralized as
off-shore/near-shore.
Then, the complexity and the uncertainty's are just increasing in these projects, and so it is difficult to even
make the first plan far from the improvement. And there are a lot of projects fallen through.
Against these situations, I propose an approach, "Development Forecast", which starts with metrics and
analysis of the project's situation and which is led to improvement. It is different from the project
management based on the planning. It is an approach in which the risk of leading to the failure of the project
is in real time feedback, by collecting and analyzing data, based on the fact (product) by the automatic
operation or using metrics tools and so on.

Figure 3. The approach for the failure project prevention

This time, I applied this approach to a static analysis of the source code, and considered the relativity of the
analysis' result and the result of the following test process.

4. Consideration concerning multilateral analysis source code
There is not so much research that evaluates relativity of the static analysis for the source code and the test,
though a lot of research showed that static analysis is effective.
In this research, I observed a software development project, using Java language, and evaluated the
relativity between the result of the tool based static analysis for source code and the quality evaluation
based on the number of the defects in the testing.

Quality Improvement by the Real-Time Detection of the Problems
--- DevCast (Development Forecast) for the Failure Project Prevention ---

Page 3 of 6
5th World Congress for Software Quality – Shanghai, China – November 2011

4.1 Content of analysis
In this document, I use the metrics in [Table 1. static quality evaluation] :
and I will use the term "static quality evaluation" as these entire evaluation by those two or more viewpoints
together.
Table 1. static quality evaluation
No

Metrics

Tool

Description

1)

Coding style violation

Checkstyle

Check source code and count the coding standard
violations.

2)

Static analysis violation

FindBugs

Check source code and count the static analysis
violations.

3)

Cyclomatic complexity
Number

JavaNCSS

Count number of methods having a cyclomatic
complexity (McCabe’s) greater than 30.

4)

Clone code lines

CPD

Count duplicate code.

The tools[4] used in this research are open-source-tools, generally used on the software development.
In order to compare the results of the analysis for each module, varied in scale, each result -- 1)-3): total
value of violations, 4): code-clone lines -- are calculated respectively by dividing on the scale of each
module (lines of code).
And then, the effectiveness of the static quality evaluation was evaluated by analyzing relativity between
these results of the static quality evaluation and the tendency of the project's defects detected in the
integration test and the release test.

4.2 The relativity between the result of static quality evaluation and the result of the software test
There are 5 modules (A - E) in this Project's product, and the results of the static quality evaluation for the
modules are showed in the [Figure 4. Approach static quality evaluation results].

Figure 4. Approach static quality evaluation results

Quality Improvement by the Real-Time Detection of the Problems
--- DevCast (Development Forecast) for the Failure Project Prevention ---

Page 4 of 6
5th World Congress for Software Quality – Shanghai, China – November 2011

And the results of the integration test and the release test for the modules are showed in the [Figure 5.
Defects in the integration test and the release test].

Figure 5. Defects in the integration test and the release test

[Figure 5. Defects in

the integration test and the release test] shows the following:

- In a module, a lot of defects were detected in the integration test and the release test (mod-A). In another
one, though few defects (not reached the target value) were detected in the integration test, a lot detected in
the release test (mod-D).
- Contrary, there was a function with few detection in integration test (not reached the target value) and with
few detection in release test, that means the quality is GOOD (mod-C).
According to these result shows how difficult it is to evaluate the quality of the software product only by the
test. --- I do not mean to deny the effect of the test, though. ---

On the other hand, seeing the [Figure 4. Approach static quality evaluation results] and [Figure 5. Defects in the
integration test and the release test], it is found that many defects were detected by the release test in the
module in which many violations are detected through the static quality evaluation(mod-A, C, D).
Then it is thought that the static quality evaluation is one of the efficient measures to specify which module
has some quality risks before the test executed, because the tendency of the static quality evaluation and
the tendency of the test have the correlation, though the number of defect is not a linear relation.
To be brief, it is expected to improve the software quality before the testing, to specify the modules which
contain quality risks by the static quality evaluation for the source codes and to treat the risk properly.

Quality Improvement by the Real-Time Detection of the Problems
--- DevCast (Development Forecast) for the Failure Project Prevention ---

Page 5 of 6
5th World Congress for Software Quality – Shanghai, China – November 2011

5. Final
In this document, I evaluated the effectiveness of multilateral static analysis, as an approach to prevent
project failure as earlier as possible, because the approach will provide us real-time feedback about the risk
of failure to project. As a result, it can find the features which have quality risk and improve that.
This quality analysis method can be expected to remove results that relied on individual and to get real-time
results because it is based on the automatic analysis of the artifacts by the tools. I think that this approach is
effective to prevent failure of the running project.
The following things are thought as future subject.
1. Statistical analysis intended for a lot of projects.
2. Trend analysis of the effects of metric type.
3. Examination and verification of similar analysis in design process.

References
[1] NIKKEI Computer (No.2008-12-1), 2nd project research of 800 companies, NIKKEI BP, 2008.
[2] Jorge Dominguez, The Curious Case of the CHAOS Report 2009, Project Smart, 2009
[3] Wikipedia [Online], http://en.wikipedia.org/wiki/PDCA (accessed on 2008/12)
[4] Checkstyle(http://checkstyle.sourceforge.net/), FindBugs(http://findbugs.sourceforge.net/),
JavaNCSS(http://javancss.codehaus.org/), CPD(http://pmd.sourceforge.net/cpd.html)

Quality Improvement by the Real-Time Detection of the Problems
--- DevCast (Development Forecast) for the Failure Project Prevention ---

Page 6 of 6

More Related Content

DOC
ISTQB Advanced – Study Guide -1
PPTX
Basics of software testing
PDF
Software testing
PPTX
ISTQB Technical Test Analyst 2012 Training - The Technical Test Analyst's Tas...
PPTX
Software Quality Assurance
PDF
QA Interview Questions With Answers
PDF
Notes on teaching software testing
PDF
Istqb ctal tm
ISTQB Advanced – Study Guide -1
Basics of software testing
Software testing
ISTQB Technical Test Analyst 2012 Training - The Technical Test Analyst's Tas...
Software Quality Assurance
QA Interview Questions With Answers
Notes on teaching software testing
Istqb ctal tm

What's hot (20)

PPT
1.basics of software testing
PPT
TESTING LIFE CYCLE PPT
DOCX
Latest Manual Testing Interview Questions and Answers 2015 - H2kinfosys
PDF
Free-ebook-rex-black advanced-software-testing
PDF
Software testing
PDF
52892006 manual-testing-real-time
PPT
Test Management introduction
PDF
Stlc tutorial
PDF
software testing for beginners
PPTX
DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...
PPTX
Lessons Learned in Software Quality 1
DOCX
Manual testing interview questions and answers
PPTX
TESTING IMPLEMENTATION SYSTEM
PPTX
Test management
DOC
priti_resume
PPT
QACampus PPT (STLC)
PPT
Testing Framework
PPTX
CTFL chapter 05
PPT
DOCX
Software Maintenance
1.basics of software testing
TESTING LIFE CYCLE PPT
Latest Manual Testing Interview Questions and Answers 2015 - H2kinfosys
Free-ebook-rex-black advanced-software-testing
Software testing
52892006 manual-testing-real-time
Test Management introduction
Stlc tutorial
software testing for beginners
DevLabs Alliance Top 20 Software Testing Interview Questions for SDET - by De...
Lessons Learned in Software Quality 1
Manual testing interview questions and answers
TESTING IMPLEMENTATION SYSTEM
Test management
priti_resume
QACampus PPT (STLC)
Testing Framework
CTFL chapter 05
Software Maintenance
Ad

Viewers also liked (20)

PDF
5WCSQ - Quality Improvement by the Real-Time Detection of the Problems
PDF
SQiP2012 - 質問表の活用によるプロジェクトの早期リスク検出
DOC
5WCSQ(CFP) - Quality Improvement by the Real-Time Detection of the Problems
PPTX
パソコン甲子園の紹介+時間が余ったら趣味の話とか
PDF
思いやり駆動開発@XP祭り2007
PPTX
Flink Batch Processing and Iterations
PDF
Zoltán Zvara - Advanced visualization of Flink and Spark jobs

PDF
ライブストリーミングの基礎知識
PDF
Apache Flink vs Apache Spark - Reproducible experiments on cloud.
PDF
デブサミ2014-Stormで実現するビッグデータのリアルタイム処理プラットフォーム ~ストリームデータ処理から機械学習まで~
PDF
DMM.com ラボはなぜSparkを採用したのか? レコメンドエンジン開発の裏側をお話します
PDF
高専生の大好きな○○のお話
PDF
Apache NiFi 1.0 in Nutshell
PDF
ストリーミングのげんざい
PDF
Twitterのリアルタイム分散処理システム「Storm」入門
PPTX
Hadoop or Spark: is it an either-or proposition? By Slim Baltagi
PDF
IoT時代におけるストリームデータ処理と急成長の Apache Flink
PPTX
Kafkaを活用するためのストリーム処理の基本
PDF
Apache Spark の紹介(前半:Sparkのキホン)
PPTX
JVM上でのストリーム処理エンジンの変遷
5WCSQ - Quality Improvement by the Real-Time Detection of the Problems
SQiP2012 - 質問表の活用によるプロジェクトの早期リスク検出
5WCSQ(CFP) - Quality Improvement by the Real-Time Detection of the Problems
パソコン甲子園の紹介+時間が余ったら趣味の話とか
思いやり駆動開発@XP祭り2007
Flink Batch Processing and Iterations
Zoltán Zvara - Advanced visualization of Flink and Spark jobs

ライブストリーミングの基礎知識
Apache Flink vs Apache Spark - Reproducible experiments on cloud.
デブサミ2014-Stormで実現するビッグデータのリアルタイム処理プラットフォーム ~ストリームデータ処理から機械学習まで~
DMM.com ラボはなぜSparkを採用したのか? レコメンドエンジン開発の裏側をお話します
高専生の大好きな○○のお話
Apache NiFi 1.0 in Nutshell
ストリーミングのげんざい
Twitterのリアルタイム分散処理システム「Storm」入門
Hadoop or Spark: is it an either-or proposition? By Slim Baltagi
IoT時代におけるストリームデータ処理と急成長の Apache Flink
Kafkaを活用するためのストリーム処理の基本
Apache Spark の紹介(前半:Sparkのキホン)
JVM上でのストリーム処理エンジンの変遷
Ad

Similar to 5WCSQ(CFP) - Quality Improvement by the Real-Time Detection of the Problems (20)

PDF
Reading Summary - Effective Software Defect Tracking + Pragmatic Unit Testing
PPTX
Process Improvement for better Software Technical Quality under Global Crisis...
PPTX
basic concepts & preliminaries Testing.pptx
PPTX
SQA Lec_4.ppt learn sqa knowledge using this pptx
PPTX
Software Quality Assurance
PDF
EFFECTIVE TEST CASE DESING: A REVIEW
PDF
PPTX
Improving Validation Activities
PDF
O0181397100
PDF
Software Defects and SW Reliability Assessment
PDF
IRJET- Faces of Testing Strategies: Why &When?
PDF
F017652530
PDF
A Review on Software Fault Detection and Prevention Mechanism in Software Dev...
PPT
Ch1 preliminaries
PDF
L software testing
PPTX
FADHILLA ELITA Ppt Chapter 1
PPT
Software Inspection And Defect Management
PPTX
Software engineering quality assurance and testing
PPTX
Testing and quality romi
DOC
Defect Age
Reading Summary - Effective Software Defect Tracking + Pragmatic Unit Testing
Process Improvement for better Software Technical Quality under Global Crisis...
basic concepts & preliminaries Testing.pptx
SQA Lec_4.ppt learn sqa knowledge using this pptx
Software Quality Assurance
EFFECTIVE TEST CASE DESING: A REVIEW
Improving Validation Activities
O0181397100
Software Defects and SW Reliability Assessment
IRJET- Faces of Testing Strategies: Why &When?
F017652530
A Review on Software Fault Detection and Prevention Mechanism in Software Dev...
Ch1 preliminaries
L software testing
FADHILLA ELITA Ppt Chapter 1
Software Inspection And Defect Management
Software engineering quality assurance and testing
Testing and quality romi
Defect Age

Recently uploaded (20)

PPTX
Cloud computing and distributed systems.
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Modernizing your data center with Dell and AMD
PPTX
MYSQL Presentation for SQL database connectivity
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
KodekX | Application Modernization Development
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PPT
Teaching material agriculture food technology
PDF
Encapsulation theory and applications.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Cloud computing and distributed systems.
Network Security Unit 5.pdf for BCA BBA.
NewMind AI Monthly Chronicles - July 2025
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
20250228 LYD VKU AI Blended-Learning.pptx
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Modernizing your data center with Dell and AMD
MYSQL Presentation for SQL database connectivity
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
KodekX | Application Modernization Development
Diabetes mellitus diagnosis method based random forest with bat algorithm
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Encapsulation_ Review paper, used for researhc scholars
Review of recent advances in non-invasive hemoglobin estimation
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Spectral efficient network and resource selection model in 5G networks
Teaching material agriculture food technology
Encapsulation theory and applications.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025

5WCSQ(CFP) - Quality Improvement by the Real-Time Detection of the Problems

  • 1. 5th World Congress for Software Quality – Shanghai, China – November 2011 Quality Improvement by the Real-Time Detection of the Problems --- DevCast (Development Forecast) for the Failure Project Prevention --Takanori Suzuki Acroquest Technology Co., Ltd. Kanagawa, Japan takanori@acroquest.co.jp Abstract In software development, the quantitative management might be actually insufficient because of the influence of the analysis relied on individual. For example, usual manager of quality assurance judge the level of software quality by the defect density and the defect convergence. However, the testing results is depends on the precision of test items and the skill of testers, etc. Therefore it is difficult to evaluate software quality by the testing results. For improving such a case, it is necessary that the quality is analyzed in real-time and the projects failure risks are found beforehand. In this document, I evaluated the effectiveness of multilateral static analysis and the relationship of them with the testing results. 1. Introduction Only 30% of software development projects can succeed in Japanese software development industry[1]. The success means to manage the software development project within planed quality, cost and delivery. The others, 70% of software development projects cannot finish within the planned criteria. Such situation is seriously abnormal compared with other industries. However, this situation is not only in Japan, but also in other countries and these worse situation are not changed in several years[2]. Quality Assurance and Quality Improvement for software development always be the most important field, but the big improvement has not come yet because of no effective ways in several decades. Especially, the reasons of failure of recent software development projects are the quality problems. In addition to that, the quality problem affects not only developers and customers, but also the society using the software. Therefore, I focused on the software quality and propose the method to detect and correct the quality problems in real-time. 2. Invisible quality problem We usually use metrics to evaluate quality in software test. The representative metrics are defect density (number of defects per volume of codes) and defect convergence (total number of defects per expected number of defect). These metrics are independent from test items, reliability of test items and precision of testing. We have to consider the following factors for evaluation criteria of test completion. ・ ・ ・ ・ Quality of input specification Quality of test items Quality of defect Quality of tester
  • 2. 5th World Congress for Software Quality – Shanghai, China – November 2011 However, it is difficult to consider these all factors. Therefore, many software products which satisfied criteria in the certain process still include many defects rather than expected. Figure 1. Test completion and factors for it QCD(Q:Quality C:Cost D:Delivery) is the basic index for projects management. It is easy to calculate Cost and Delivery. However it is difficult to calculate Quality with simple metrics. That is why it is difficult to detect quality problems and it is almost too late to correct them if you can find out. In actual development site, the priority of quality is usually lower against cost and delivery. Figure 2. The gap between the ideal and the reality in a test process Quality Improvement by the Real-Time Detection of the Problems --- DevCast (Development Forecast) for the Failure Project Prevention --- Page 2 of 6
  • 3. 5th World Congress for Software Quality – Shanghai, China – November 2011 For breaking through these situations, we need a method with which we judge actual quality of software product in real-time, and predict the future problem and correct them. 3. "Development Forecast" approach PDCA, cyclic management style, was made popular by Walter A. Schewhart and Dr. W. Edwards Deming, in 1950's[3], and applied for software engineering. However, In today's software development projects being made to large scale, being shortened for the schedule, being needed to keep rapid-changing technical-elements, every day, being decentralized as off-shore/near-shore. Then, the complexity and the uncertainty's are just increasing in these projects, and so it is difficult to even make the first plan far from the improvement. And there are a lot of projects fallen through. Against these situations, I propose an approach, "Development Forecast", which starts with metrics and analysis of the project's situation and which is led to improvement. It is different from the project management based on the planning. It is an approach in which the risk of leading to the failure of the project is in real time feedback, by collecting and analyzing data, based on the fact (product) by the automatic operation or using metrics tools and so on. Figure 3. The approach for the failure project prevention This time, I applied this approach to a static analysis of the source code, and considered the relativity of the analysis' result and the result of the following test process. 4. Consideration concerning multilateral analysis source code There is not so much research that evaluates relativity of the static analysis for the source code and the test, though a lot of research showed that static analysis is effective. In this research, I observed a software development project, using Java language, and evaluated the relativity between the result of the tool based static analysis for source code and the quality evaluation based on the number of the defects in the testing. Quality Improvement by the Real-Time Detection of the Problems --- DevCast (Development Forecast) for the Failure Project Prevention --- Page 3 of 6
  • 4. 5th World Congress for Software Quality – Shanghai, China – November 2011 4.1 Content of analysis In this document, I use the metrics in [Table 1. static quality evaluation] : and I will use the term "static quality evaluation" as these entire evaluation by those two or more viewpoints together. Table 1. static quality evaluation No Metrics Tool Description 1) Coding style violation Checkstyle Check source code and count the coding standard violations. 2) Static analysis violation FindBugs Check source code and count the static analysis violations. 3) Cyclomatic complexity Number JavaNCSS Count number of methods having a cyclomatic complexity (McCabe’s) greater than 30. 4) Clone code lines CPD Count duplicate code. The tools[4] used in this research are open-source-tools, generally used on the software development. In order to compare the results of the analysis for each module, varied in scale, each result -- 1)-3): total value of violations, 4): code-clone lines -- are calculated respectively by dividing on the scale of each module (lines of code). And then, the effectiveness of the static quality evaluation was evaluated by analyzing relativity between these results of the static quality evaluation and the tendency of the project's defects detected in the integration test and the release test. 4.2 The relativity between the result of static quality evaluation and the result of the software test There are 5 modules (A - E) in this Project's product, and the results of the static quality evaluation for the modules are showed in the [Figure 4. Approach static quality evaluation results]. Figure 4. Approach static quality evaluation results Quality Improvement by the Real-Time Detection of the Problems --- DevCast (Development Forecast) for the Failure Project Prevention --- Page 4 of 6
  • 5. 5th World Congress for Software Quality – Shanghai, China – November 2011 And the results of the integration test and the release test for the modules are showed in the [Figure 5. Defects in the integration test and the release test]. Figure 5. Defects in the integration test and the release test [Figure 5. Defects in the integration test and the release test] shows the following: - In a module, a lot of defects were detected in the integration test and the release test (mod-A). In another one, though few defects (not reached the target value) were detected in the integration test, a lot detected in the release test (mod-D). - Contrary, there was a function with few detection in integration test (not reached the target value) and with few detection in release test, that means the quality is GOOD (mod-C). According to these result shows how difficult it is to evaluate the quality of the software product only by the test. --- I do not mean to deny the effect of the test, though. --- On the other hand, seeing the [Figure 4. Approach static quality evaluation results] and [Figure 5. Defects in the integration test and the release test], it is found that many defects were detected by the release test in the module in which many violations are detected through the static quality evaluation(mod-A, C, D). Then it is thought that the static quality evaluation is one of the efficient measures to specify which module has some quality risks before the test executed, because the tendency of the static quality evaluation and the tendency of the test have the correlation, though the number of defect is not a linear relation. To be brief, it is expected to improve the software quality before the testing, to specify the modules which contain quality risks by the static quality evaluation for the source codes and to treat the risk properly. Quality Improvement by the Real-Time Detection of the Problems --- DevCast (Development Forecast) for the Failure Project Prevention --- Page 5 of 6
  • 6. 5th World Congress for Software Quality – Shanghai, China – November 2011 5. Final In this document, I evaluated the effectiveness of multilateral static analysis, as an approach to prevent project failure as earlier as possible, because the approach will provide us real-time feedback about the risk of failure to project. As a result, it can find the features which have quality risk and improve that. This quality analysis method can be expected to remove results that relied on individual and to get real-time results because it is based on the automatic analysis of the artifacts by the tools. I think that this approach is effective to prevent failure of the running project. The following things are thought as future subject. 1. Statistical analysis intended for a lot of projects. 2. Trend analysis of the effects of metric type. 3. Examination and verification of similar analysis in design process. References [1] NIKKEI Computer (No.2008-12-1), 2nd project research of 800 companies, NIKKEI BP, 2008. [2] Jorge Dominguez, The Curious Case of the CHAOS Report 2009, Project Smart, 2009 [3] Wikipedia [Online], http://en.wikipedia.org/wiki/PDCA (accessed on 2008/12) [4] Checkstyle(http://checkstyle.sourceforge.net/), FindBugs(http://findbugs.sourceforge.net/), JavaNCSS(http://javancss.codehaus.org/), CPD(http://pmd.sourceforge.net/cpd.html) Quality Improvement by the Real-Time Detection of the Problems --- DevCast (Development Forecast) for the Failure Project Prevention --- Page 6 of 6