Building Google test project from zero in windows

Google test (also known as gtest) is a testing framework developed by Google testing technology team. It provides a set of excellent unit testing solutions for c/c + + code. This paper introduces how to use Google test to build your own unit test project from zero under windows. 0. Environmental preparation System: Windows10 vscode: https://c ...

Added by aznjay on Sun, 07 Nov 2021 20:33:55 +0200

Delay queue and dead letter queue of rabbitmq

1, Delay queue and dead letter queue Dead letter queue: elements are not consumed in time after they are generated and are always stored in the queue. Delay queue: the delay queue has a sequence within the queue. Its most important feature is the delay time. It wants to be taken out and processed after or before the specified time. It is simi ...

Added by Riotblade on Mon, 01 Nov 2021 03:35:07 +0200

Configure C + + development environment in VSCode (Win10 system)

preparation To use the C + + development environment in VSCode, you need to download and install: VSCode , just like installing other applications, select the installation path and add environment variable option to continue to the next step until the installation is completed.MinGW , pay attention to x86 during installation_ 64 architect ...

Added by iHack on Mon, 25 Oct 2021 08:40:53 +0300

Maven pom.xml file details

POM stands for Project Object Model. It is an XML representation of a Maven project, stored in a file named pom.XML. A project contains not only a collection of files containing code, but also configuration files, as well as the roles of the developers involved and their roles, defect tracking systems, organizations and licenses, and where the ...

Added by john8675309 on Sat, 11 Sep 2021 01:49:19 +0300