1# Copyright 2020 The ChromiumOS Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4"""An example constraint file for use in tests""" 5 6from checker import constraint_suite 7 8 9class Example2ConstraintSuite(constraint_suite.ConstraintSuite): 10 11 def check_first_thing(self, program_config, project_config): 12 pass 13 14 def check_second_thing(self, program_config, project_config): 15 pass