Add instance field get/put test

Still need to handle unresolved at compile-time case.

Change-Id: I4d9c82c4bbe4810aaa147ac19418706635a29a7f
diff --git a/src/compiler_test.cc b/src/compiler_test.cc
index 1e9f203..694a85a 100644
--- a/src/compiler_test.cc
+++ b/src/compiler_test.cc
@@ -241,4 +241,10 @@
                         3);
 }
 
+TEST_F(CompilerTest, TestIGetPut) {
+  CompileDex(kIntMathDex, "kIntMathDex");
+  AssertStaticIntMethod("IntMath", "testIGetPut", "(I)I", 333,
+                        111);
+}
+
 }  // namespace art