JBlanket

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Code Analyzer » JBlanket 
JBlanket
License:GNU General Public License (GPL)
URL:http://csdl.ics.hawaii.edu/Tools/JBlanket/
Description:JBlanket is a tool for assessing and improving method coverage of unit test cases.
Package NameComment
csdl.foo
csdl.jblanket

Contains the parent class describing the implementation for the ClassModifier and JBlanketReport classes in the modify and report packages, respectively.

csdl.jblanket.ant Contains the Task definitions for running JBlanket with Apache Ant.
csdl.jblanket.app

Provides the application used to exclude individual methods from the coverage measurement. The System's package structure is mapped into a tree and displayed in a window. The user is able to double-click on the package or class names to expand the nodes. To exclude methods, the user must first select a node and then click on the "Exclude" button. The button will change all of the methods under the selected node to the appropriate color. If a user excluded method is to be included again, the user must first select the method node or its parent and click on the "Include" button. This will return the node to its original color or the untested color if it was originally an excluded method.

csdl.jblanket.app.tree

Provides the specific classes used to create, modify and store the tree structure used to represent the analyzed system.

csdl.jblanket.methodset MethodSet is a simple, persistent ADT that represents a container of information regarding Methods. Each Method is represented by a set of strings that provide information regarding the package and class membership of the Method, as well as an ordered list of the class signatures of its parameters.

MethodSets are used by JBlanket to record

  1. all methods being measured
  2. all methods not being measured
  3. all methods invoked at run-time during testing of a system
The difference between the first, second, and third lists is the set of methods in a system that were not exercised through testing, i.e. the method coverage.
csdl.jblanket.modifier Contains the classes used during method instrumentation.

Java methods are modified such that their type signatures are stored in XML files when they are invoked. Modifiable methods include non-abstract and non-native methods. Constructors or methods containing one line of source code can also be excluded from coverage to measure XC.

Byte code in .class or .jar files can be instrumented. When modifying .class files, packages or individual classes can be either included or excluded. When modifying JAR files, either all packages or specific package may be included by specifying a package prefix.

In addition, all methods to be included in the coverage measurement are counted. These methods are later compared against those methods that are invoked during testing to calculate method coverage.

csdl.jblanket.report Contains the classes to format JBlanket output.

The raw JBlanket results stored in XML files are aggregated into one file according to class and type of method (constructor, oneline, tested, or untested methods). This file is then parsed and formatted into HTML web pages using XSLT. Because test cases are implemented using JUnit, the report from JBlanket is formatted using a stylesheet similar to the one used by JUnit (from Apache Ant).

csdl.jblanket.report.element Contains the classes to create aggregate XML file.

The JBlanket results are stored in XML files testedMethods.xml and diffMethods.xml, and optional files onelineMethods.xml and constructorMethods.xml, are aggregated into one file ('COVER-MethodSets.xml') according to class and category of method (tested, untested, oneline, or constructor).

csdl.jblanket.util Contains the utility classes for JBlanket. These classes include:
  • Factory to package or extract JAR files
  • Constants used throughout JBlanket
  • Container for all JBlanket method categories
  • JBlanket version information
csdl.stackmvc.control
csdl.stackmvc.control.command
csdl.stackmvc.model
csdl.stackmvc.util
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.