2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
8 import cygprofile_utils
11 class TestCygprofileUtils(unittest
.TestCase
):
12 def testInvertMapping(self
):
13 inputMap
= {'1': ['2', '3'],
15 self
.assertEqual(cygprofile_utils
.InvertMapping(inputMap
),
21 if __name__
== '__main__':