%% %% %CopyrightBegin% %% %% Copyright Ericsson AB 1997-2016. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. %% You may obtain a copy of the License at %% %% http://www.apache.org/licenses/LICENSE-2.0 %% %% Unless required by applicable law or agreed to in writing, software %% distributed under the License is distributed on an "AS IS" BASIS, %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %% See the License for the specific language governing permissions and %% limitations under the License. %% %% %CopyrightEnd% %% %% -module(testSetOfTag). -export([main/1]). -include_lib("common_test/include/ct.hrl"). -include("External.hrl"). -record('SetTagNt',{nt}). -record('SetTagNtI',{imp}). -record('SetTagNtE',{exp}). -record('SetTagI',{nt}). -record('SetTagII',{imp}). -record('SetTagIE',{exp}). -record('SetTagE',{nt}). -record('SetTagEI',{imp}). -record('SetTagEE',{exp}). -record('SetTagXNt',{xnt}). -record('SetTagXI',{ximp}). -record('SetTagXE',{xexp}). -record('SetTagImpX',{xnt, ximp, xexp}). -record('SetTagExpX',{xnt, ximp, xexp}). -record('NT',{os, bool}). -record('Imp',{os, bool}). -record('Exp',{os, bool}). main(_Rules) -> roundtrip('SetTagNt', #'SetTagNt'{nt=[#'NT'{os = <<"kalle">>,bool=true}, #'NT'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagNtI', #'SetTagNtI'{imp=[#'Imp'{os = <<"kalle">>,bool=true}, #'Imp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagNtE', #'SetTagNtE'{exp=[#'Exp'{os = <<"kalle">>,bool=true}, #'Exp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagI', #'SetTagI'{nt=[#'NT'{os = <<"kalle">>,bool=true}, #'NT'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagII', #'SetTagII'{imp=[#'Imp'{os = <<"kalle">>,bool=true}, #'Imp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagIE', #'SetTagIE'{exp=[#'Exp'{os = <<"kalle">>,bool=true}, #'Exp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagE', #'SetTagE'{nt=[#'NT'{os = <<"kalle">>,bool=true}, #'NT'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagEI', #'SetTagEI'{imp=[#'Imp'{os = <<"kalle">>,bool=true}, #'Imp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagEE', #'SetTagEE'{exp=[#'Exp'{os = <<"kalle">>,bool=true}, #'Exp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagXNt', #'SetTagXNt'{xnt=[#'XSetNT'{os = <<"kalle">>,bool=true}, #'XSetNT'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagXI', #'SetTagXI'{ximp=[#'XSetImp'{os = <<"kalle">>,bool=true}, #'XSetImp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagXE', #'SetTagXE'{xexp=[#'XSetExp'{os = <<"kalle">>,bool=true}, #'XSetExp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagImpX', #'SetTagImpX'{xnt=[#'XSetNT'{os = <<"kalle">>,bool=true}, #'XSetNT'{os = <<"kalle">>,bool=true}], ximp=[#'XSetImp'{os = <<"kalle">>,bool=true}, #'XSetImp'{os = <<"kalle">>,bool=true}], xexp=[#'XSetExp'{os = <<"kalle">>,bool=true}, #'XSetExp'{os = <<"kalle">>,bool=true}]}), roundtrip('SetTagExpX', #'SetTagExpX'{xnt=[#'XSetNT'{os = <<"kalle">>,bool=true}, #'XSetNT'{os = <<"kalle">>,bool=true}], ximp=[#'XSetImp'{os = <<"kalle">>,bool=true}, #'XSetImp'{os = <<"kalle">>,bool=true}], xexp=[#'XSetExp'{os = <<"kalle">>,bool=true}, #'XSetExp'{os = <<"kalle">>,bool=true}]}), ok. roundtrip(T, V) -> asn1_test_lib:roundtrip('SetOfTag', T, V).