Files
openlayers/tests/Symbolizer/Point.html

53 lines
2.3 KiB
HTML

<html>
<head>
<script src="../OLLoader.js"></script>
<script type="text/javascript">
function test_constructor(t) {
t.plan(3);
var symbolizer = new OpenLayers.Symbolizer.Point({foo: "bar"});
t.ok(symbolizer instanceof OpenLayers.Symbolizer, "instance of OpenLayers.Symbolizer");
t.ok(symbolizer instanceof OpenLayers.Symbolizer.Point, "instance of OpenLayers.Symbolizer.Point");
t.eq(symbolizer.foo, "bar", "constructor applies config properties");
}
function test_clone(t) {
t.plan(2);
var symbolizer = new OpenLayers.Symbolizer.Point({foo: "bar"});
var clone = symbolizer.clone();
t.ok(clone instanceof OpenLayers.Symbolizer.Point, "correct type");
t.eq(clone.foo, "bar", "clone copies properties");
}
function test_defaults(t) {
t.plan(16);
var symbolizer = new OpenLayers.Symbolizer.Point();
t.ok(symbolizer.strokeColor === undefined, "no default strokeColor");
t.ok(symbolizer.strokeOpacity === undefined, "no default strokeOpacity");
t.ok(symbolizer.strokeWidth === undefined, "no default strokeWidth");
t.ok(symbolizer.strokeLinecap === undefined, "no default strokeLinecap");
t.ok(symbolizer.strokeDashstyle === undefined, "no default strokeDashstyle");
t.ok(symbolizer.fillColor === undefined, "no default fillColor");
t.ok(symbolizer.fillOpacity === undefined, "no default fillOpacity");
t.ok(symbolizer.pointRadius === undefined, "no default pointRadius");
t.ok(symbolizer.externalGraphic === undefined, "no default externalGraphic");
t.ok(symbolizer.graphicWidth === undefined, "no default graphicWidth");
t.ok(symbolizer.graphicHeight === undefined, "no default graphicHeight");
t.ok(symbolizer.graphicOpacity === undefined, "no default graphicOpacity");
t.ok(symbolizer.graphicXOffset === undefined, "no default graphicXOffset");
t.ok(symbolizer.graphicYOffset === undefined, "no default graphicYOffset");
t.ok(symbolizer.rotation === undefined, "no default rotation");
t.ok(symbolizer.graphicName === undefined, "no default graphicName");
}
</script>
</head>
<body></body>
</html>