03.04.2009, 01:06 | #1 |
Участник
|
mfp: AX6 sneak preview - X++ Unit test improvements
Источник: http://blogs.msdn.com/mfp/archive/20...rovements.aspx
============== These days the first milestone of AX6 is being completed. It means the first wave of new functionality has been implemented, tested and documented. As always; it is an exciting time to be working on AX... One of the features coming in MorphX in AX6 is set of improvements in the X++ Unit Test framework. First of all the unit test framework in AX6 is leveraging the new attribute feature in the X++ langauge. For example; you can use an attribute to declaratively specify the target class for your test (i.e. the class that is being tested by this unit test). Here is how: [SysTestTargetAttribute('MyClass')] class MyTestCase extends SysTestCase { } Starting in AX6; you can also use attributes to mark which methods on the unit test class are test methods: [SysTestMethodAttribute] public void myTest() { } If you are using both unit testing and a version control system, you can benefit from marking your most critical test methods as check-in-tests. When setting up the version control system, you can specify which test project to run during check-in, and whether to run all unit test methods, or only the unit test methods that are marked as check-in-tests. During a check-in process the specified unit tests will be executed, and only if they all succeed the check-in will be submitted. This gives you the flexibility to run the most critical unit tests during the check-in process, while still having a full suite of unit tests that can be run on-demand. Here is how to mark a method as a check-in-test: [SysTestCheckInTestAttribute] public void myCheckInTest() { } Using test projects in AX6 to group your unit tests brings even more benefits. When running the test project, you now get the results visible directly in the project as small icons - and when hovering over a failed unit test, you get the failure message. This posting is provided "AS IS" with no warranties, and confers no rights. ============== Источник: http://blogs.msdn.com/mfp/archive/20...rovements.aspx
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
03.06.2009, 15:50 | #2 |
Участник
|
Еще одно прошедшее незамеченным сообщение. Вроде бы раньше в Х++ не было такого понятия, как атрибуты, и, соотв., не было декларативного программирования (если не считать за таковое указание свойства RunOn для классов), как в том же C# и других "CLR-языках". Сейчас атрибуты предполагается использовать лишь для VCS, но кто знает, что будет дальше С учетом того, что метаданные приложения в AX6 предполагается вынести из AOD-файлов в SQL-базу, каких-либо существенных ограничений для ввода новых атрибутов фактически не будет...
|
|
|
За это сообщение автора поблагодарили: mazzy (2). |
04.06.2009, 09:23 | #3 |
Участник
|
Цитата:
Вроде бы раньше в Х++ не было такого понятия, как атрибуты, и, соотв., не было декларативного программирования
P/S Из декларативных языков знаю только ТУРБО-ПРОЛОГ, но не представляю, как его можно применить в ах! |
|
04.06.2009, 12:50 | #4 |
Участник
|
Глумми про то, что в Ax6 будут атрибуты
|
|
05.06.2009, 10:56 | #5 |
Участник
|
часть темы вынесена декларативное программирование vs императивное программирование.
|
|
|
|