1# Copyright 2019 Oticon A/S
2# SPDX-License-Identifier: Apache-2.0
3
4class TestSpec():
5
6    def __init__(self, name = "", number_devices = 2, description = "", test_private ="", require_low_level_device = False):
7        self.name = name;
8        self.number_devices = number_devices;
9        self.description = description;
10        self.test_private = test_private;
11        self.require_low_level_device = require_low_level_device
12
13    def __repr__(self):
14        return "Test '%s'\n"%self.name + \
15               " Requires %i device(s)\n"%self.number_devices + \
16               " Description: %s"%self.description;