1/* 2 * Copyright (c) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16/* 17 * @tc.name:container 18 * @tc.desc:test container 19 * @tc.type: FUNC 20 * @tc.require: issueI5NO8G 21 */ 22import {arraylistRes} from './container_arraylist' 23import {dequeRes} from './container_deque' 24import {hashmapRes} from './container_hashmap' 25import {hashsetRes} from './container_hashset' 26import {lightweightmapRes} from './container_lightweightmap' 27import {lightweightsetRes} from './container_lightweightset' 28import {linked_listRes} from './container_linked_list' 29import {listRes} from './container_list' 30import {plainarrayRes} from './container_plainarray' 31import {queueRes} from './container_queue' 32import {stackRes} from './container_stack' 33import {treemapRes} from './container_treemap' 34import {treesetRes} from './container_treeset' 35import {vectorRes} from './container_vector' 36print(arraylistRes); 37print(dequeRes); 38print(hashmapRes); 39print(hashsetRes); 40print(lightweightmapRes); 41print(lightweightsetRes); 42print(linked_listRes); 43print(listRes); 44print(plainarrayRes); 45print(queueRes); 46print(stackRes); 47print(treemapRes); 48print(treesetRes); 49print(vectorRes); 50var string = "container test end" 51print(string); 52