diff --git a/src/frontends/ir/README.md b/src/frontends/ir/README.md index 61c2c7ebff3..775d6a3ac96 100644 --- a/src/frontends/ir/README.md +++ b/src/frontends/ir/README.md @@ -28,6 +28,7 @@ OpenVINO IR Frontend contains the next components: * [include](./include) is a public frontend API. * [src](./src/) folder contains the sources of the component. +* [tests](./tests/) folder contains tests for the component. To get more information, read [How to run tests](./docs/tests.md). ## Architecture @@ -37,6 +38,7 @@ For detailed information about OpenVINO IR Frontend architecture, read the [arch ## Tutorials * [How to support a new opset](./docs/support_new_opset.md) + * [How to run tests](./docs/tests.md) ## See also diff --git a/src/frontends/ir/docs/tests.md b/src/frontends/ir/docs/tests.md new file mode 100644 index 00000000000..db95c755377 --- /dev/null +++ b/src/frontends/ir/docs/tests.md @@ -0,0 +1,17 @@ +# OpenVINO IR Frontend tests + +OpenVINO IR tests cover the next frontend functionality: parser IRs, read model from the memory, and extensions support. + +## How to build and run tests + +CMake target `ov_ir_frontend_tests` is responsible for building IR tests. IR Frontend tests use the `gtest` framework for tests execution. + +After the build, `ov_ir_frontend_tests` (`ov_ir_frontend_tests.exe` for Windows) binary files can be used to run all tests for the IR frontend. + +To get a tests coverage report for the IR frontend, read the page on [measuring coverage](../../../../docs/dev/test_coverage.md). + +## See also + + * [OpenVINO IR Frontend README](../README.md) + * [OpenVINO™ README](../../../../README.md) + * [Developer documentation](../../../../docs/dev/index.md)