How to group test files in a CoAP conformance test suite

I am writing a compliance test suite for the Limited Application Protocol (CoAP) based on TTCN-3. Now I already know the protocol. CoAP is similar to HTTP. Both of them are application layer protocols. There is a CoAP client and CoAP server, they exchange messages. Now I'm starting to write a test suite. But I am having problems with how I can develop the whole set of tests, because there can be too many test cases. In order for me to develop a complete set of tests, before writing each test case, it is necessary to group test cases. How am I going to group these test cases? Can anyone give me some suggestions? Thank.

+3
source share
1 answer

There are actually many ways to organize your test suite.

A good approach is to first determine what needs to be verified before starting to think about how it can be verified . I would advise taking a look at how ETSI validates and tests communications protocols .

If you focus more on CoAP testing, you can be inspired by available online tests, such as:

Good luck

0
source

All Articles