Skip to content

Commit

Permalink
Better internal class name
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Aug 18, 2023
1 parent 7afc689 commit 605029c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import junit.framework.TestCase;

/** Unit tests for the Block Disk Cache */
public abstract class BlockDiskCacheUnitTestAbstract extends TestCase
public abstract class AbstractBlockDiskCacheUnitTest extends TestCase
{
public abstract BlockDiskCacheAttributes getCacheAttributes();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

import org.apache.commons.jcs3.auxiliary.disk.behavior.IDiskCacheAttributes.DiskLimitType;

public class BlockDiskCacheCountUnitTest extends BlockDiskCacheUnitTestAbstract
public class BlockDiskCacheCountUnitTest extends AbstractBlockDiskCacheUnitTest
{

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

import org.apache.commons.jcs3.auxiliary.disk.behavior.IDiskCacheAttributes.DiskLimitType;

public class BlockDiskCacheSizeUnitTest extends BlockDiskCacheUnitTestAbstract
public class BlockDiskCacheSizeUnitTest extends AbstractBlockDiskCacheUnitTest
{

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
/**
* Tests for common functionality.
*/
public abstract class IndexDiskCacheUnitTestAbstract extends TestCase
public abstract class AbstractIndexDiskCacheUnitTest extends TestCase
{
public abstract IndexedDiskCacheAttributes getCacheAttributes();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.apache.commons.jcs3.engine.CacheElement;
import org.apache.commons.jcs3.engine.behavior.ICacheElement;

public class IndexDiskCacheCountUnitTest extends IndexDiskCacheUnitTestAbstract {
public class IndexDiskCacheCountUnitTest extends AbstractIndexDiskCacheUnitTest {

@Override
public IndexedDiskCacheAttributes getCacheAttributes() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.apache.commons.jcs3.engine.CacheElement;
import org.apache.commons.jcs3.engine.behavior.ICacheElement;

public class IndexDiskCacheSizeUnitTest extends IndexDiskCacheUnitTestAbstract {
public class IndexDiskCacheSizeUnitTest extends AbstractIndexDiskCacheUnitTest {

@Override
public IndexedDiskCacheAttributes getCacheAttributes() {
Expand Down

0 comments on commit 605029c

Please sign in to comment.