blob: 3f7702922badc0291e90d05cd10b4a620ea5d1a4 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/tracing/extras/chrome/gpu/state.html">
<link rel="import" href="/tracing/extras/importer/trace_event_importer.html">
<link rel="import" href="/tracing/model/model.html">
<script src="/tracing/extras/chrome/gpu/state_test_data.js"></script>
<script>
'use strict';
tr.b.unittest.testSuite(function() {
test('basic', function() {
var m = new tr.Model(g_gpu_state_trace);
var p = tr.b.dictionaryValues(m.processes)[0];
var instance = p.objects.getAllInstancesNamed('gpu::State')[0];
var snapshot = instance.snapshots[0];
assert.instanceOf(snapshot, tr.e.gpu.StateSnapshot);
assert.typeOf(snapshot.screenshot, 'string');
instance.wasDeleted(150);
});
});
</script>