Home | History | Annotate | Download | only in targets
      1 /*******************************************************************************
      2  * Copyright (c) 2009, 2018 Mountainminds GmbH & Co. KG and Contributors
      3  * All rights reserved. This program and the accompanying materials
      4  * are made available under the terms of the Eclipse Public License v1.0
      5  * which accompanies this distribution, and is available at
      6  * http://www.eclipse.org/legal/epl-v10.html
      7  *
      8  * Contributors:
      9  *    Marc R. Hoffmann - initial API and implementation
     10  *
     11  *******************************************************************************/
     12 package org.jacoco.core.test.validation.targets;
     13 
     14 /**
     15  * This test target has instance members with initialization in two
     16  * constructors.
     17  */
     18 public class Target09 {
     19 
     20 	Object field1 = null; // $line-field1$
     21 
     22 	int field2 = 123; // $line-field2$
     23 
     24 	public Target09() {
     25 	} // $line-constr1$
     26 
     27 	public Target09(String arg) {
     28 	} // $line-constr2$
     29 
     30 	public static void main(String[] args) {
     31 		new Target09();
     32 	}
     33 
     34 }
     35