 Chromium Code Reviews
 Chromium Code Reviews Issue 475233005:
  Setup heap-unittests and runtime-unittests.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 475233005:
  Setup heap-unittests and runtime-unittests.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| Index: test/heap-unittests/heap-unittest.cc | 
| diff --git a/test/heap-unittests/heap-unittest.cc b/test/heap-unittests/heap-unittest.cc | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..ee1dcbca3d619397a83c19dfb75e5b3a0a07ee6f | 
| --- /dev/null | 
| +++ b/test/heap-unittests/heap-unittest.cc | 
| @@ -0,0 +1,16 @@ | 
| +// Copyright 2014 the V8 project authors. All rights reserved. | 
| +// Use of this source code is governed by a BSD-style license that can be | 
| +// found in the LICENSE file. | 
| + | 
| +#include "testing/gtest/include/gtest/gtest.h" | 
| + | 
| +namespace v8 { | 
| +namespace internal { | 
| + | 
| +TEST(HeapTest, Dummy) { | 
| + EXPECT_FALSE(false); | 
| + EXPECT_TRUE(true); | 
| +} | 
| + | 
| +} // namespace internal | 
| +} // namespace v8 |