public override void SetUp()
		{
			base.SetUp();
			toLoad = new AList<WindowCacheGetTest.TestObject>();
			BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(
				JGitTestUtil.GetTestResourceFile("all_packed_objects.txt")), Constants.CHARSET));
			try
			{
				string line;
				while ((line = br.ReadLine()) != null)
				{
					string[] parts = line.Split(" {1,}");
					WindowCacheGetTest.TestObject o = new WindowCacheGetTest.TestObject(this);
					o.id = ObjectId.FromString(parts[0]);
					o.SetType(parts[1]);
					// parts[2] is the inflate size
					// parts[3] is the size-in-pack
					// parts[4] is the offset in the pack
					toLoad.AddItem(o);
				}
			}
			finally
			{
				br.Close();
			}
			NUnit.Framework.Assert.AreEqual(96, toLoad.Count);
		}
        public override void SetUp()
        {
            base.SetUp();
            toLoad = new AList <WindowCacheGetTest.TestObject>();
            BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(
                                                                             JGitTestUtil.GetTestResourceFile("all_packed_objects.txt")), Constants.CHARSET));

            try
            {
                string line;
                while ((line = br.ReadLine()) != null)
                {
                    string[] parts = line.Split(" {1,}");
                    WindowCacheGetTest.TestObject o = new WindowCacheGetTest.TestObject(this);
                    o.id = ObjectId.FromString(parts[0]);
                    o.SetType(parts[1]);
                    // parts[2] is the inflate size
                    // parts[3] is the size-in-pack
                    // parts[4] is the offset in the pack
                    toLoad.AddItem(o);
                }
            }
            finally
            {
                br.Close();
            }
            NUnit.Framework.Assert.AreEqual(96, toLoad.Count);
        }