#!/bin/bash | |
source /var/onap_tests/_test_base | |
source /var/onap/vfc | |
covered_functions=( | |
"clone_all_vfc_repos" | |
) | |
# test_clone_all_vfc_repos() - Verify cloning and pulling source code from repositories | |
function test_clone_all_vfc_repos { | |
# TODO(sshank) | |
echo "" | |
} | |
if [ "$1" != '*' ]; then | |
unset covered_functions | |
covered_functions=$1 | |
fi | |
main "${covered_functions[@]}" |