testing/gtest/mozilla/SanityTest.cpp

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/testing/gtest/mozilla/SanityTest.cpp	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
     1.5 + * * This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +#include "gtest/gtest.h"
    1.10 +#include "gmock/gmock.h"
    1.11 +
    1.12 +using ::testing::AtLeast;
    1.13 +
    1.14 +// Sanity test to make sure that GTest is hooked into
    1.15 +// the mozilla build system correctly
    1.16 +TEST(MozillaGTestSanity, Runs) {
    1.17 +  EXPECT_EQ(1, 1);
    1.18 +}
    1.19 +namespace {
    1.20 +class TestMock {
    1.21 +public:
    1.22 +  TestMock() {}
    1.23 +  MOCK_METHOD0(MockedCall, void());
    1.24 +};
    1.25 +}
    1.26 +TEST(MozillaGMockSanity, Runs) {
    1.27 +  TestMock mockedClass;
    1.28 +  EXPECT_CALL(mockedClass, MockedCall())
    1.29 +    .Times(AtLeast(3));
    1.30 +
    1.31 +  mockedClass.MockedCall();
    1.32 +  mockedClass.MockedCall();
    1.33 +  mockedClass.MockedCall();
    1.34 +}

mercurial