blob: da3c6fc12318957a7076e160a4151a4f2cf7f3d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
#ifndef FOGFixture_h_
#define FOGFixture_h_
#include "gtest/gtest.h"
#include "mozilla/glean/fog_ffi_generated.h"
#include "nsString.h"
using namespace mozilla::glean::impl;
class FOGFixture : public ::testing::Test {
protected:
FOGFixture() = default;
virtual void SetUp() {
nsCString empty;
ASSERT_EQ(NS_OK, fog_test_reset(&empty, &empty));
}
};
#endif // FOGFixture_h_
|