julia_v_iluhina

Untitled

Nov 2nd, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.44 KB | None | 0 0
  1.     <properties>
  2.         ...
  3.         <suite>*Test</suite>
  4.         ...
  5.     </properties>
  6. /*
  7.     уже не надо нам это свойство
  8. */
  9. *************************
  10.  <profiles>
  11.         <profile>
  12.             <id>smoke</id>
  13.             <properties>
  14.                 <test.includeCategories>com.todomvc.categories.Smoke</test.includeCategories>
  15.             </properties>
  16.         </profile>
  17.  
  18.         <profile>
  19.             <id>acceptance</id>
  20.             <properties>
  21.                 <test.excludeCategories>com.todomvc.categories.Smoke</test.excludeCategories>
  22.             </properties>
  23.         </profile>
  24.         /*
  25.             тут надо бы Buggy исключить
  26.         */
  27.  
  28.         <profile>
  29.             <id>buggy</id>
  30.             <properties>
  31.                 <test.includeCategories>com.todomvc.categories.Buggy</test.includeCategories>
  32.             </properties>
  33.         </profile>
  34.  
  35.         /*
  36.             и еще для all нужен профиль
  37.             т к properties - соотвествуюз ранее обїявленнім значениям по умолчанию
  38.             для этого профиля - можно вообще раздел properties не объявлять
  39.  
  40.             но сам профиль all - нужен
  41.         */
  42.     </profiles>
  43. **************************
  44. http://joxi.ru/ZrJX8Y3f1VVDQ2
  45.  
  46. /*
  47.     в этом проекте - сьюты не нужны
  48. */
Advertisement
Add Comment
Please, Sign In to add comment