Home / Resource

Resource

Unit tests SystemC model with GTest

Base on Google Test, we build a template framework for unit tests systemc model. About some information Google Test, you can refer here By using this framework, you can do unit tests for your model and ensure quality for your product. After download, follow the steps below. Step 1: Copy …

Read More »

Verify your code with Google test

What is GTEST? Google Test (also known as gtest for e.g. the ROS environment) is a unit testing library for the C++ programming language, based on the xUnit architecture. The library is released under the BSD 3-clause license. It can be compiled for a variety of POSIX and Windows platforms, allowing unit-testing of C sources as well as C++ with minimal source modification. The …

Read More »