blob: 2a4cbbfbb8efac56c80b18458b788a134735e042 [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
Brian Carlstrom693267a2011-09-06 09:25:34 -07009TEST_F(HeapTest, GarbageCollectClassLinkerInit) {
Brian Carlstrom1f870082011-08-23 16:02:11 -070010 // garbage is created during ClassLinker::Init
11 Heap::CollectGarbage();
12}
13
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070014} // namespace art