Files
openlayers/tests/Protocol/SQL.html

24 lines
667 B
HTML

<html>
<head>
<script src="../../lib/OpenLayers.js"></script>
<script type="text/javascript">
function test_initialize(t) {
t.plan(3);
var options = {tableName: 'my_features',
databaseName: 'my_database_name'}
var protocol = new OpenLayers.Protocol.SQL(options);
t.ok(protocol instanceof OpenLayers.Protocol.SQL,
"new OpenLayers.Protocol.SQL returns object");
t.eq(protocol.tableName, options.tableName, "tableName property is set");
t.eq(protocol.databaseName, options.databaseName, "databaseName property is set");
}
</script>
</head>
<body>
</body>
</html>