Example #1
0
 def setup_method(self):
     """
     Setup for each test method in this class.
     """
     # Create some objects that only have single attributes
     self.first = Dynamic(first=1)
     self.second = Dynamic(second=2)
     self.agg = ObjectAggregator(self.first, self.second)
Example #2
0
 def setUp(self):
     # Create some objects that only have single attributes
     self.first = Dynamic(first=1)
     self.second = Dynamic(second=2)
     self.agg = ObjectAggregator(self.first, self.second)