mirror of
https://github.com/NASAWorldWind/WebWorldWind.git
synced 2026-01-25 15:23:04 +00:00
25 lines
582 B
JavaScript
25 lines
582 B
JavaScript
/*
|
|
* Copyright (C) 2014 United States Government as represented by the Administrator of the
|
|
* National Aeronautics and Space Administration. All Rights Reserved.
|
|
*/
|
|
require({
|
|
baseUrl: '/test/'
|
|
}, [
|
|
'test/CatchTest',
|
|
'src/formats/kml/KmlDocument',
|
|
'src/formats/kml/util/NodeTransformers',
|
|
'src/util/XmlDocument'
|
|
], function (CatchTest,
|
|
KmlDocument,
|
|
NodeTransformers,
|
|
XmlDocument) {
|
|
"use strict";
|
|
|
|
|
|
|
|
TestCase("Style#withIdSimpleLevel", {
|
|
testRetrievingStyle: function() {
|
|
|
|
}
|
|
});
|
|
}); |