1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-07 17:15:26 +02:00
jami-client-qt/tests/unittests/dummy_unittest.cpp
ababi 4048a9d710 tests: add first samples for c++ and qml testing
- add QtQuickTest, QtTest and googletest support
- create tests folder within cmake hierarchy
- avoid using wildcards in Dockerfile

Change-Id: I81661a86757f01333538908dbc81a0bafae00ab7
2020-11-06 10:53:34 -05:00

7 lines
99 B
C++

#include <gtest/gtest.h>
TEST(DummyTest, TestDummy)
{
EXPECT_EQ(1, 1);
ASSERT_EQ(0, 0);
}