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 {bufferRes} from './container_buffer' 24import {dequeRes} from './container_deque' 25import {hashmapRes} from './container_hashmap' 26import {hashsetRes} from './container_hashset' 27import {lightweightmapRes} from './container_lightweightmap' 28import {lightweightsetRes} from './container_lightweightset' 29import {linked_listRes} from './container_linked_list' 30import {listRes} from './container_list' 31import {plainarrayRes} from './container_plainarray' 32import {queueRes} from './container_queue' 33import {stackRes} from './container_stack' 34import {treemapRes} from './container_treemap' 35import {treesetRes} from './container_treeset' 36import {vectorRes} from './container_vector' 37print(arraylistRes); 38print(bufferRes); 39print(dequeRes); 40print(hashmapRes); 41print(hashsetRes); 42print(lightweightmapRes); 43print(lightweightsetRes); 44print(linked_listRes); 45print(listRes); 46print(plainarrayRes); 47print(queueRes); 48print(stackRes); 49print(treemapRes); 50print(treesetRes); 51print(vectorRes); 52var string = "container test end" 53print(string); 54