svnno****@sourc*****
svnno****@sourc*****
2009年 5月 28日 (木) 22:27:56 JST
Revision: 3420 http://svn.sourceforge.jp/view?root=jiemamy&view=rev&rev=3420 Author: tonouchi Date: 2009-05-28 22:27:56 +0900 (Thu, 28 May 2009) Log Message: ----------- 新規作成 Added Paths: ----------- artemis/branches/tonocchi-CORE129/jiemamy-artemis-test/src/test/java/org/jiemamy/internal/serializer/JiemamyStaxSerializerTest.java -------------- next part -------------- Added: artemis/branches/tonocchi-CORE129/jiemamy-artemis-test/src/test/java/org/jiemamy/internal/serializer/JiemamyStaxSerializerTest.java =================================================================== --- artemis/branches/tonocchi-CORE129/jiemamy-artemis-test/src/test/java/org/jiemamy/internal/serializer/JiemamyStaxSerializerTest.java (rev 0) +++ artemis/branches/tonocchi-CORE129/jiemamy-artemis-test/src/test/java/org/jiemamy/internal/serializer/JiemamyStaxSerializerTest.java 2009-05-28 13:27:56 UTC (rev 3420) @@ -0,0 +1,57 @@ +/* + * Copyright 2007-2009 Jiemamy Project and the Others. + * Created on 2009/05/24 + * + * This file is part of Jiemamy. + * + * 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. + */ +package org.jiemamy.internal.serializer; + +import org.junit.After; +import org.junit.Before; + +import org.jiemamy.Artemis; +import org.jiemamy.ArtemisView; +import org.jiemamy.Jiemamy; + +/** + * @link{JiemamyStaxSerializer}のテストケース + * + * @author tonouchi + */ +public class JiemamyStaxSerializerTest extends JiemamySerializerTest { + + /** + * テストを初期化する。 + * + * @throws Exception 例外が発生した場合 + */ + @Before + public void setUp() throws Exception { + jiemamy = Jiemamy.newInstance(new Artemis(new ArtemisView())); + serializer = jiemamy.getSerializer(); + } + + /** + * テストの情報を破棄する。 + * + * @throws Exception 例外が発生した場合 + */ + @After + public void tearDown() throws Exception { + serializer = null; + jiemamy = null; + } + +} Property changes on: artemis/branches/tonocchi-CORE129/jiemamy-artemis-test/src/test/java/org/jiemamy/internal/serializer/JiemamyStaxSerializerTest.java ___________________________________________________________________ Added: svn:mime-type + text/plain