您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

RepositoryGroupHandlerTest.java 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. package org.apache.archiva.repository.base.group;
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. import org.junit.jupiter.api.Test;
  20. import static org.junit.jupiter.api.Assertions.*;
  21. /**
  22. * @author Martin Stockhammer <martin_s@apache.org>
  23. */
  24. class RepositoryGroupHandlerTest
  25. {
  26. @Test
  27. void initializeFromConfig( )
  28. {
  29. }
  30. @Test
  31. void initialize( )
  32. {
  33. }
  34. @Test
  35. void newInstancesFromConfig( )
  36. {
  37. }
  38. @Test
  39. void newInstance( )
  40. {
  41. }
  42. @Test
  43. void testNewInstance( )
  44. {
  45. }
  46. @Test
  47. void put( )
  48. {
  49. }
  50. @Test
  51. void testPut( )
  52. {
  53. }
  54. @Test
  55. void testPut1( )
  56. {
  57. }
  58. @Test
  59. void putWithCheck( )
  60. {
  61. }
  62. @Test
  63. void remove( )
  64. {
  65. }
  66. @Test
  67. void testRemove( )
  68. {
  69. }
  70. @Test
  71. void get( )
  72. {
  73. }
  74. @Test
  75. void testClone( )
  76. {
  77. }
  78. @Test
  79. void updateReferences( )
  80. {
  81. }
  82. @Test
  83. void getAll( )
  84. {
  85. }
  86. @Test
  87. void getValidator( )
  88. {
  89. }
  90. @Test
  91. void validateRepository( )
  92. {
  93. }
  94. @Test
  95. void validateRepositoryForUpdate( )
  96. {
  97. }
  98. @Test
  99. void has( )
  100. {
  101. }
  102. @Test
  103. void close( )
  104. {
  105. }
  106. }