Skip to content

Latest commit

 

History

History
16 lines (16 loc) · 829 Bytes

README.md

File metadata and controls

16 lines (16 loc) · 829 Bytes

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