More short test names, still no functional change.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@8169 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<script src="../../lib/OpenLayers.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
function test_FeatureId_constructor(t) {
|
||||
function test_initialize(t) {
|
||||
t.plan(3);
|
||||
|
||||
var options = {'foo': 'bar'};
|
||||
@@ -14,7 +14,7 @@
|
||||
t.eq(typeof filter.evaluate, "function", "filter has an evaluate function");
|
||||
}
|
||||
|
||||
function test_FeatureId_destroy(t) {
|
||||
function test_destroy(t) {
|
||||
t.plan(1);
|
||||
|
||||
var filter = new OpenLayers.Filter.FeatureId();
|
||||
@@ -22,7 +22,7 @@
|
||||
t.eq(filter.symbolizer, null, "symbolizer hash nulled properly");
|
||||
}
|
||||
|
||||
function test_FeatureId_evaluate(t) {
|
||||
function test_evaluate(t) {
|
||||
t.plan(3);
|
||||
|
||||
var filter = new OpenLayers.Filter.FeatureId(
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<script src="../../lib/OpenLayers.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
function test_Logical_constructor(t) {
|
||||
function test_initialize(t) {
|
||||
t.plan(3);
|
||||
|
||||
var options = {'foo': 'bar'};
|
||||
@@ -14,7 +14,7 @@
|
||||
t.eq(typeof filter.evaluate, "function", "filter has an evaluate function");
|
||||
}
|
||||
|
||||
function test_Logical_destroy(t) {
|
||||
function test_destroy(t) {
|
||||
t.plan(1);
|
||||
|
||||
var filter = new OpenLayers.Filter.Logical();
|
||||
@@ -22,7 +22,7 @@
|
||||
t.eq(filter.filters, null, "filters array nulled properly");
|
||||
}
|
||||
|
||||
function test_Logical_evaluate(t) {
|
||||
function test_evaluate(t) {
|
||||
t.plan(1);
|
||||
|
||||
var filter = new OpenLayers.Filter.Logical({
|
||||
|
||||
Reference in New Issue
Block a user