blob: 625dff2a15ec3eff5b6b8c3d0edd631a5241b5d1 [file] [log] [blame]
# Copyright 2017 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.
import unittest
from tracing.mre import job
class JobTest(unittest.TestCase):
def testNoDuplicateUUID(self):
job0 = job.Job('not none')
job1 = job.Job('not none')
self.assertNotEqual(job0.guid, job1.guid)