23 lines
502 B
C++
23 lines
502 B
C++
/* 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_
|