Categorygithub.com/test-network-function/cnfextensions

# README

How to create cnf extensions projects

This repository proposes a method to extend the CNF test suite beyond the original test cases. Steps to add private test cases:

cd cnf-certification-test/cnf-certification-test
  • add a new import line in suite_test.go:
import _ "github.com/myorg/example"
  • build the test suite and run it as usual. The following line will run the existing networking suite and the new extended "mynewsuite" defined in the hypothetical https://github.com/myorg/example project
./run-cnf-suites.sh -f networking mynewsuite

# Constants

No description provided by the author