skia2/tests/graphite/ShapeTest.cpp
Robert Phillips 3062759ffd [graphite] Set up unit testing system
Bug: skia:12466
Change-Id: I401a185d818a964327d323b9ebcd0850ec0b1c9b
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/457318
Reviewed-by: Jim Van Verth <jvanverth@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
2021-10-11 16:18:05 +00:00

17 lines
403 B
C++

/*
* Copyright 2021 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "tests/Test.h"
#include "experimental/graphite/src/geom/Shape.h"
DEF_GRAPHITE_TEST(ShapeTest, reporter) {
// TODO: Michael takes this over
skgpu::geom::Shape s;
REPORTER_ASSERT(reporter, s.type() == skgpu::geom::Shape::Type::kEmpty);
}