Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2e670c2

Browse files
authoredSep 28, 2019
Change CI category,adoption of README (#3)
1 parent dd68dc2 commit 2e670c2

3 files changed

+15
-7
lines changed
 

‎README.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
# ATC-Best-Practise-Guide
2-
ABAP Test Cockpit Best Practise Guide
1+
# ABAP Test Cockpit Best Practice Guide
32

4-
Beispielcode als Begleitmaterial zum ATC-Leitfaden der [DSAG](https://dsag.de/).
3+
Dieses Repository beinhaltet Beispielcode als Begleitmaterial zum ABAP Test Cockpit (ATC) Leitfaden der [DSAG](https://dsag.de/).
54

6-
Snippets:
7-
* Report zur übersichtlichen Anzeige von Prüfvarianten
5+
## Folder "src"
6+
Der Folder beinhaltet Codebeispiele für Prüfklassen. Die Kategorie aller Prüfklassen ist `ZCL_CI_CATEGORY_DSAG`.
7+
8+
### ZCL_CI_TEST_DSAG_PRETTY_PRINT
9+
Klasse zur Überprüfung ob auf den Source Code Pretty Print angewendet wurde
10+
11+
## Folder "snippets"
12+
Der Folder "snippets" beinhaltet Code Snippets, die Sie bei Iherer Arbeiten mit dem ATC unterstützen.
13+
14+
### Z_SCI_VARIANT_*
15+
Sourcen zur Erstellen eines Reports für die übersichtliche Anzeige von Prüfvarianten

‎src/zcl_ci_category_dsag_samples.clas.abap

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ CLASS ZCL_CI_CATEGORY_DSAG_SAMPLES IMPLEMENTATION.
2020

2121
super->constructor( ).
2222
description = 'DSAG Beispiele'(001).
23-
category = 'CL_CI_CATEGORY_TOP'.
23+
category = 'ZCL_CI_CATEGORY_DSAG' ##NO_TEXT.
2424
position = '010'.
2525

2626
ENDMETHOD.

‎src/zcl_ci_test_dsag_pretty_print.clas.abap

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ CLASS ZCL_CI_TEST_DSAG_PRETTY_PRINT IMPLEMENTATION.
4949
super->constructor( ).
5050

5151
description = 'Überprüfung ob Pretty Printer benutzt wurde'(001).
52-
category = 'ZCL_CI_CATEGORY_DSAG_SAMPLES'.
52+
category = 'ZCL_CI_CATEGORY_DSAG' ##NO_TEXT.
5353

5454
has_documentation = abap_true. "Es existiert eine Dokumentation dazu
5555
has_attributes = abap_true. "Gibt an, dass Attribute vorhanden sind

0 commit comments

Comments
 (0)
Please sign in to comment.