aboutsummaryrefslogtreecommitdiff
path: root/catapult/telemetry/telemetry/timeline/bounds_unittest.py
blob: 0b0612411ab300e83af5229b178f3318a4ce07fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2014 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 telemetry.timeline import bounds


class BoundsTests(unittest.TestCase):

  def testGetOverlap(self):
    # Non overlap cases.
    self.assertEquals(0, bounds.Bounds.GetOverlap(10, 20, 30, 40))
    self.assertEquals(0, bounds.Bounds.GetOverlap(30, 40, 10, 20))
    # Overlap cases.
    self.assertEquals(10, bounds.Bounds.GetOverlap(10, 30, 20, 40))
    self.assertEquals(10, bounds.Bounds.GetOverlap(20, 40, 10, 30))
    # Inclusive cases.
    self.assertEquals(10, bounds.Bounds.GetOverlap(10, 40, 20, 30))
    self.assertEquals(10, bounds.Bounds.GetOverlap(20, 30, 10, 40))