for path in $PATHS do # Ignore pass/fail/indeterminate folders, functions test in sc, workdir folder and xml in sd if [[ "$path" != */pass* ]] && [[ "$path" != */fail* ]] && [[ "$path" != */indeterminate* ]] \
&& [[ "$path" != */functions* ]] && [[ "$path" != */workdir* ]] && [[ "$path" != */xml* ]]; then for i in $path/* do if [ -f "$i" ]; then
file=$(basename "$i") if ! git grep -q "$file"; then echo"WARNING: $i is not used, write a testcase for it!" fi fi done fi done
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.