Changeset 11458 in josm for trunk/test/unit


Ignore:
Timestamp:
2017-01-12T02:27:10+01:00 (7 years ago)
Author:
Don-vip
Message:

sonar - squid:S3578 - Test methods should comply with a naming convention

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/data/cache/HostLimitQueueTest.java

    r11448 r11458  
    9292     */
    9393    @Test
    94     public void test_single_thread_per_host() throws Exception {
     94    public void testSingleThreadPerHost() throws Exception {
    9595        ThreadPoolExecutor tpe = getNewThreadPoolExecutor("test-%d", 3, 1);
    9696        ICacheAccess<String, CacheEntry> cache = JCSCacheManager.getCache("test", 3, 0, "");
     
    117117     */
    118118    @Test
    119     public void test_multiple_thread_per_host() throws Exception {
     119    public void testMultipleThreadPerHost() throws Exception {
    120120        ThreadPoolExecutor tpe = getNewThreadPoolExecutor("test-%d", 3, 2);
    121121        ICacheAccess<String, CacheEntry> cache = JCSCacheManager.getCache("test", 3, 0, "");
     
    142142     */
    143143    @Test
    144     public void test_two_hosts() throws Exception {
     144    public void testTwoHosts() throws Exception {
    145145        ThreadPoolExecutor tpe = getNewThreadPoolExecutor("test-%d", 3, 1);
    146146        ICacheAccess<String, CacheEntry> cache = JCSCacheManager.getCache("test", 3, 0, "");
Note: See TracChangeset for help on using the changeset viewer.