Home | History | Annotate | Download | only in util
      1 package com.xtremelabs.robolectric.util;
      2 
      3 /**
      4  * Test class used as a substitute for com.xtremelabs.robolectric.res.ResourceLoader's
      5  * reference to the application R class
      6  */
      7 public final class TestR {
      8 
      9 	private static int base = 1025;
     10 
     11 	public static final class anim {
     12 		public static final int test_anim_1 = ++base;
     13 	}
     14 
     15 	public static class color {
     16 		public static final int test_color_1 = ++base;
     17 	}
     18 
     19 	public static class drawable {
     20 		public static final int test_drawable_1 = ++base;
     21 	}
     22 }