OSDN Git Service

remove unused files
authorikemo <ikemo@56b19765-1e22-0410-a548-a0f45d66c51a>
Thu, 4 May 2006 01:35:06 +0000 (01:35 +0000)
committerikemo <ikemo@56b19765-1e22-0410-a548-a0f45d66c51a>
Thu, 4 May 2006 01:35:06 +0000 (01:35 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/kita/kita/trunk@1844 56b19765-1e22-0410-a548-a0f45d66c51a

kita/src/libkita/tests/k2ch_articlefiletest.cpp [deleted file]
kita/src/libkita/tests/k2ch_articlefiletest.h [deleted file]

diff --git a/kita/src/libkita/tests/k2ch_articlefiletest.cpp b/kita/src/libkita/tests/k2ch_articlefiletest.cpp
deleted file mode 100644 (file)
index e328ee9..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-/***************************************************************************
-*   Copyright (C) 2003 by Hideki Ikemoto                                  *
-*   ikemo@wakaba.jp                                                       *
-*                                                                         *
-*   This program is free software; you can redistribute it and/or modify  *
-*   it under the terms of the GNU General Public License as published by  *
-*   the Free Software Foundation; either version 2 of the License, or     *
-*   (at your option) any later version.                                   *
-***************************************************************************/
-#include "k2ch_articlefiletest.h"
-#include "../k2ch_articlefile.h"
-#include <cppunit/TestCaller.h>
-
-void K2chArticleFileTest::setUp()
-{
-    m_empty = new K2chArticleFile();
-    m_empty->parse( "()" );
-
-    m_one = new K2chArticleFile();
-    m_one->parse( "((\"1000000000\" :seen 100 :access-time (16122 26923 0)))" );
-
-    m_many = new K2chArticleFile();
-    m_many->parse( "((\"1000000000\" :seen 100 :access-time (16122 26923 0))"
-                   "(\"999999999\" :seen -1 :access-time (16122 26778 0))"
-                   "(\"1234567890\" :seen 999 :access-time (16205 63250 0)))" );
-}
-
-void K2chArticleFileTest::tearDown()
-{
-    delete m_empty;
-    delete m_one;
-    delete m_many;
-}
-
-void K2chArticleFileTest::testCount()
-{
-    CPPUNIT_ASSERT_EQUAL( 0, m_empty->count() );
-    CPPUNIT_ASSERT_EQUAL( 1, m_one->count() );
-    CPPUNIT_ASSERT_EQUAL( 3, m_many->count() );
-}
-
-void K2chArticleFileTest::testName()
-{
-    CPPUNIT_ASSERT_EQUAL( QString( "1000000000" ), m_one->item( 0 ).name() );
-
-    CPPUNIT_ASSERT_EQUAL( QString( "1000000000" ), m_many->item( 0 ).name() );
-    CPPUNIT_ASSERT_EQUAL( QString( "999999999" ), m_many->item( 1 ).name() );
-    CPPUNIT_ASSERT_EQUAL( QString( "1234567890" ), m_many->item( 2 ).name() );
-}
-
-void K2chArticleFileTest::testSeen()
-{
-    CPPUNIT_ASSERT_EQUAL( 100, m_one->item( 0 ).seen() );
-
-    CPPUNIT_ASSERT_EQUAL( 100, m_many->item( 0 ).seen() );
-    CPPUNIT_ASSERT_EQUAL( -1, m_many->item( 1 ).seen() );
-    CPPUNIT_ASSERT_EQUAL( 999, m_many->item( 2 ).seen() );
-}
-
-void K2chArticleFileTest::testAccessTime()
-{
-    CPPUNIT_ASSERT_EQUAL( ( time_t ) 1056598315, m_one->item( 0 ).accessTime() );
-
-    CPPUNIT_ASSERT_EQUAL( ( time_t ) 1056598315, m_many->item( 0 ).accessTime() );
-    CPPUNIT_ASSERT_EQUAL( ( time_t ) 1056598170, m_many->item( 1 ).accessTime() );
-    CPPUNIT_ASSERT_EQUAL( ( time_t ) 1062074130, m_many->item( 2 ).accessTime() );
-}
-
-void K2chArticleFileTest::testToString()
-{
-    CPPUNIT_ASSERT_EQUAL( QString( "()" ), m_empty->toString() );
-
-    CPPUNIT_ASSERT_EQUAL( QString( "((\"1000000000\" :seen 100 :access-time (16122 26923 0)))" ),
-                          m_one->toString() );
-
-    CPPUNIT_ASSERT_EQUAL( QString( "((\"1000000000\" :seen 100 :access-time (16122 26923 0))"
-                                   "(\"999999999\" :seen -1 :access-time (16122 26778 0))"
-                                   "(\"1234567890\" :seen 999 :access-time (16205 63250 0)))" ),
-                          m_many->toString() );
-}
diff --git a/kita/src/libkita/tests/k2ch_articlefiletest.h b/kita/src/libkita/tests/k2ch_articlefiletest.h
deleted file mode 100644 (file)
index 20aedf4..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/***************************************************************************
-*   Copyright (C) 2003 by Hideki Ikemoto                                  *
-*   ikemo@wakaba.jp                                                       *
-*                                                                         *
-*   This program is free software; you can redistribute it and/or modify  *
-*   it under the terms of the GNU General Public License as published by  *
-*   the Free Software Foundation; either version 2 of the License, or     *
-*   (at your option) any later version.                                   *
-***************************************************************************/
-#ifndef K2CH_ARTICLEFILETEST_H
-#define K2CH_ARTICLEFILETEST_H
-
-#include <cppunit/extensions/HelperMacros.h>
-
-class K2chArticleFile;
-
-/**
-@author Hideki Ikemoto
-*/
-class K2chArticleFileTest : public CppUnit::TestFixture
-{
-    CPPUNIT_TEST_SUITE( K2chArticleFileTest );
-    CPPUNIT_TEST( testCount );
-    CPPUNIT_TEST( testName );
-    CPPUNIT_TEST( testSeen );
-    CPPUNIT_TEST( testAccessTime );
-    CPPUNIT_TEST( testToString );
-    CPPUNIT_TEST_SUITE_END();
-
-    K2chArticleFile *m_empty, *m_one, *m_many;
-
-public:
-    void setUp();
-    void tearDown();
-
-    void testCount();
-    void testName();
-    void testSeen();
-    void testAccessTime();
-    void testToString();
-};
-
-#endif