Beispiel #1
0
 def test_010_trilinear(self):
     config_file = "trilinear-config.json"
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path)
Beispiel #2
0
 def test_011_gehry_bilbao(self):
     config_file = "gehry-bilbao-config.json"
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path)
Beispiel #3
0
 def test_006_bad_data_path(self):
     config_file = "test-bad-data-path.json"
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path)
Beispiel #4
0
 def test_008_no_control_nets_file(self):
     config_file = "test-bad-control-nets-file.json"
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path)
Beispiel #5
0
 def test_005_bad_num_time_divisions(self):
     config_file = "test-bad-num-time-divisions.json"
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path)
Beispiel #6
0
 def test_004_unknown_bezier_type(self):
     config_file = "test-unknown-bezier-type.json"
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path)
Beispiel #7
0
 def test_003_incomplete_config_schema(self):
     config_file = "test-schema-incomplete.json"
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path)
Beispiel #8
0
 def test_001_Georgia_e(self):
     config_file = "Georgia-e-config.json"
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path, verbose=True)
Beispiel #9
0
 def test_000_no_config_file(self):
     config_file = "test-no-such-file.json"  # file does not exist
     config_path = Path.joinpath(self.data_dir, config_file)
     item = vbz.ViewBezier(config=config_path, verbose=True)