File indexing completed on 2024-04-28 04:35:49

0001 /* This file is part of KDevelop
0002  *
0003  * Copyright (C) 2012-2015 Miquel Sabaté Solà <mikisabate@gmail.com>
0004  *
0005  * This program is free software: you can redistribute it and/or modify
0006  * it under the terms of the GNU General Public License as published by
0007  * the Free Software Foundation, either version 3 of the License, or
0008  * (at your option) any later version.
0009  *
0010  * This program is distributed in the hope that it will be useful,
0011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0013  * GNU General Public License for more details.
0014  *
0015  * You should have received a copy of the GNU General Public License
0016  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
0017  */
0018 
0019 
0020 #ifndef RUBYCOMPLETION_H
0021 #define RUBYCOMPLETION_H
0022 
0023 
0024 #include <duchain/tests/duchaintestbase.h>
0025 
0026 
0027 namespace ruby {
0028 
0029 /**
0030  * @class TestCompletion
0031  * The Code completion test suite.
0032  */
0033 class TestCompletion : public DUChainTestBase
0034 {
0035     Q_OBJECT
0036 
0037 public:
0038     /// Constructor.
0039     TestCompletion();
0040 
0041 protected:
0042     /// Re-implemented from DUChainTestBase.
0043     KDevelop::TopDUContext * parse(const QByteArray &code, const QString &id) override;
0044 
0045 private:
0046     /// Verify that all the items in @p shoulda are contained in @p list.
0047     void shouldContain(const QStringList &list, const QStringList &shoulda, bool sameSize = false);
0048 
0049 private slots:
0050     void standardAccess();
0051     void baseClass();
0052     void moduleMixins();
0053     void memberAccess();
0054     void checkSubclassing();
0055     void classMemberAccess();
0056     void fileChoose();
0057 };
0058 
0059 }
0060 
0061 
0062 #endif // RUBYCOMPLETION_H