Changeset 11458 in josm
- Timestamp:
- 2017-01-12T02:27:10+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/cache/HostLimitQueueTest.java
r11448 r11458 92 92 */ 93 93 @Test 94 public void test _single_thread_per_host() throws Exception {94 public void testSingleThreadPerHost() throws Exception { 95 95 ThreadPoolExecutor tpe = getNewThreadPoolExecutor("test-%d", 3, 1); 96 96 ICacheAccess<String, CacheEntry> cache = JCSCacheManager.getCache("test", 3, 0, ""); … … 117 117 */ 118 118 @Test 119 public void test _multiple_thread_per_host() throws Exception {119 public void testMultipleThreadPerHost() throws Exception { 120 120 ThreadPoolExecutor tpe = getNewThreadPoolExecutor("test-%d", 3, 2); 121 121 ICacheAccess<String, CacheEntry> cache = JCSCacheManager.getCache("test", 3, 0, ""); … … 142 142 */ 143 143 @Test 144 public void test _two_hosts() throws Exception {144 public void testTwoHosts() throws Exception { 145 145 ThreadPoolExecutor tpe = getNewThreadPoolExecutor("test-%d", 3, 1); 146 146 ICacheAccess<String, CacheEntry> cache = JCSCacheManager.getCache("test", 3, 0, "");
Note:
See TracChangeset
for help on using the changeset viewer.