blob: 7b7e462f177e92cba945a6a4335b97b051a57a71 [file] [log] [blame]
Kaido Kert5ac52c42021-05-14 12:23:37 -07001# Copyright 2017 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from __future__ import absolute_import
6import os.path
7import unittest
8
9
10class OutputManagerTestCase(unittest.TestCase):
11
12 def assertUsableTempFile(self, archived_tempfile):
13 self.assertTrue(bool(archived_tempfile.name))
14 self.assertTrue(os.path.exists(archived_tempfile.name))
15 self.assertTrue(os.path.isfile(archived_tempfile.name))