1   package com.eviware.soapui.support.log;
2   
3   import junit.framework.TestCase;
4   
5   public class JLogListTestCase extends TestCase
6   {
7      public void testMemory() throws Exception
8      {
9      	JLogList list = new JLogList( "test" );
10     	
11  //   	for( long c = 0; c < 100000000; c++ )
12  //   	{
13  //   		list.addLine("testing");
14  //   		Thread.sleep( 2 );
15  //   		
16  //   		if( c % 1000 == 0 )
17  //   			System.out.println( c );
18  //   	}
19     }
20  }