aboutsummaryrefslogtreecommitdiff
path: root/robolectric/src/test/java/org/robolectric/CustomConstructorActivity.java
blob: 2dae3b1f282efb93229ac98646d24bfc72449e4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.robolectric;

import android.app.Activity;

public class CustomConstructorActivity extends Activity {
  private final int intValue;

  public CustomConstructorActivity(int intValue) {
    this.intValue = intValue;
  }

  public int getIntValue() {
    return intValue;
  }
}