Problem to set up GoogleTest with platformio

I want to setup project and add possibility to test it with GoogleTest.
1.I’ve installed GoogleTest library in PIO Home.
2.I’ve created new project - Board: Arduino Uno and Framework: Arduino
3.I’ve created file test.cpp in test/native folder and I added: #include “gtest/gtest.h”
4. This is how platformio.ini looks:
[env:uno]
platform = atmelavr
board = uno
framework = arduino
lib_deps =
nadavmatalon/WatchDog@^1.2.0
google/googletest@^1.12.1

When I run test below is the output:

I don’t know how to add Gtest library to compilation process. What’s going wrong here? Any suggestions? I am new to embedded development and unit tests. So, any explanation is more than welcome.

Thank You,
Abhishek

No. Google Test has too hard requirements for the C/C++ compiler / toolchain to be compilable on AVR. See supported platforms.

The Atmel AVR can run Unity just fine though.