/testability-explorer/src/test/java/com/google/test/metric/report/ClassSourceReportTestExample.java
http://testability-explorer.googlecode.com/ · Java · 29 lines · 18 code · 7 blank · 4 comment · 0 complexity · e53f89ba868200314cad8b8fb6072eaa MD5 · raw file
- // Copyright 2008 Google Inc. All Rights Reserved.
- package com.google.test.metric.report;
- import com.google.test.metric.CostUtil;
- /**
- * @author alexeagle@google.com (Alex Eagle)
- */
- public class ClassSourceReportTestExample {
- @SuppressWarnings("unused")
- private Integer foo = 1;
- static {
- CostUtil.staticCost1();
- }
- {
- CostUtil.staticCost2();
- }
- public ClassSourceReportTestExample() {
- CostUtil.staticCost3();
- }
- public void doSomething() {
- CostUtil.staticCost4();
- }
- }