Skip to main content
summaryrefslogblamecommitdiffstats
blob: e8c2101ece5749096db5233e6c7ee864361e9978 (plain) (tree)
1
2
3
4
5
6
7
  
                                                                                       



                                                                        
  



































                                                                                         
/*
 * Copyright (c) 2007-2009, 2011, 2012, 2015 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.net4j.util.tests;

import org.eclipse.net4j.util.ref.ReferenceValueMap;

/**
 * @author Eike Stepper
 */
public class ReferenceValueMapTest extends AbstractOMTest
{
  public void testSameKey() throws Exception
  {
    ReferenceValueMap<String, Object> map = new ReferenceValueMap.Weak<String, Object>();
    for (int i = 0; i < 10; i++)
    {
      map.put("SIMON", new Object()); //$NON-NLS-1$
      System.gc();
      map.put("SIMON", new Object()); //$NON-NLS-1$
      assertEquals(true, map.size() >= 0);
    }
  }

  public void testDifferentKey() throws Exception
  {
    ReferenceValueMap<String, Object> map = new ReferenceValueMap.Weak<String, Object>();
    for (int i = 0; i < 10; i++)
    {
      map.put("SIMON", new Object()); //$NON-NLS-1$
      System.gc();
      map.put("SIMON2", new Object()); //$NON-NLS-1$
      assertEquals(true, map.size() >= 1);
    }
  }
}

Back to the top