Package com.google.test.metric.report.issues

Source Code of com.google.test.metric.report.issues.HasSetterCost

// Copyright 2009 Google Inc. All Rights Reserved.

package com.google.test.metric.report.issues;

import com.google.test.metric.CostUtil;

/**
* a simple class with cost in a setter
* @author alexeagle@google.com (Alex Eagle)
*/
public class HasSetterCost {
  public void setFoo(int foo) {
    new CostUtil().instanceCost4();
  }
}
TOP

Related Classes of com.google.test.metric.report.issues.HasSetterCost

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.