blob: 561c740b55a7e6cebb37f08fe37d5348b75c0874 [file] [log] [blame]
Carl Shapiro1fb86202011-06-27 17:43:13 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
Brian Carlstrom934486c2011-07-12 23:42:50 -07003#include "src/common_test.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -07004#include "src/dex_file.h"
Carl Shapiro0e5d75d2011-07-06 18:28:37 -07005#include "src/object.h"
Carl Shapiro1fb86202011-06-27 17:43:13 -07006#include "src/scoped_ptr.h"
7
8#include <stdio.h>
9#include "gtest/gtest.h"
10
11namespace art {
12
Brian Carlstroma331b3c2011-07-18 17:47:56 -070013TEST(DexFileTest, Open) {
Brian Carlstromcdc8de42011-07-19 14:23:17 -070014 scoped_ptr<DexFile> dex(OpenDexFileBase64(kNestedDex));
Carl Shapiro1fb86202011-06-27 17:43:13 -070015 ASSERT_TRUE(dex != NULL);
16}
17
Carl Shapiro1fb86202011-06-27 17:43:13 -070018} // namespace art