blob: 568ddd283053349e540644dae4c579b1ede689c1 [file] [log] [blame]
Brian Carlstrom1f870082011-08-23 16:02:11 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include "common_test.h"
4
5namespace art {
6
7class HeapTest : public CommonTest {};
8
9TEST_F(HeapTest, GarbageCollectClassLinkerInit) {
10 // garbage is created during ClassLinker::Init
11 Heap::CollectGarbage();
12}
13
14} // namespace art