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 =""):
7        self.name = name;
8        self.number_devices = number_devices;
9        self.description = description;
10        self.test_private = test_private;
11
12    def __repr__(self):
13        return "Test '%s'\n"%self.name + \
14               " Requires %i device(s)\n"%self.number_devices + \
15               " Description: %s"%self.description;