From 9f30b38d74990286ce27c3a45368f73dbe3638f0 Mon Sep 17 00:00:00 2001 From: Brian Carlstrom Date: Sun, 28 Aug 2011 22:41:38 -0700 Subject: Externalize test code Change-Id: Iab19397c7a72fb9a3ca63bfd0bc4eaf1a98138ba --- test/AllFields/AllFields.java | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/AllFields/AllFields.java (limited to 'test/AllFields') diff --git a/test/AllFields/AllFields.java b/test/AllFields/AllFields.java new file mode 100644 index 0000000000..86b884119d --- /dev/null +++ b/test/AllFields/AllFields.java @@ -0,0 +1,25 @@ +// Copyright 2011 Google Inc. All Rights Reserved. + +class AllFields { + static boolean sZ; + static byte sB; + static char sC; + static double sD; + static float sF; + static int sI; + static long sJ; + static short sS; + static Object sObject; + static Object[] sObjectArray; + + boolean iZ; + byte iB; + char iC; + double iD; + float iF; + int iI; + long iJ; + short iS; + Object iObject; + Object[] iObjectArray; +} -- cgit v1.2.3