data: updated jars for JavaSymbolSolver for windows

* updated jars for JavaSymbolSolver for windows to version of commit b7b2efe2
* removed tests that don't work anymore (because they need files on the file system)
This commit is contained in:
malte_langkabel
2016-10-13 18:51:35 +02:00
parent f1be2222e3
commit 49f1844470
5 changed files with 15 additions and 77 deletions
-36
View File
@@ -423,42 +423,6 @@ public:
TS_ASSERT_EQUALS(client->inheritances[0], "foo.B -> foo.A <6:27 6:27>");
}
void test_java_parser_finds_method_override()
{
std::shared_ptr<TestParserClient> client = parseCode(
"package foo;\n"
"public class A\n"
"{\n"
" void bar()\n"
" {}\n"
"}\n"
"public class B extends A\n"
"{\n"
" void bar()\n"
" {}\n"
"}\n"
);
TS_ASSERT_EQUALS(client->overrides.size(), 1);
TS_ASSERT_EQUALS(client->overrides[0], "void foo.B.bar() -> void foo.A.bar() <9:7 9:9>");
}
void test_java_parser_finds_method_call()
{
std::shared_ptr<TestParserClient> client = parseCode(
"package foo;\n"
"public class A\n"
"{\n"
" void bar()\n"
" {\n"
" bar();\n"
" }\n"
"}\n"
);
TS_ASSERT_EQUALS(client->calls.size(), 1);
TS_ASSERT_EQUALS(client->calls[0], "void foo.A.bar() -> void foo.A.bar() <6:3 6:5>");
}
void _SYMBOLSOLVERISSUE_test_java_parser_finds_correct_location_of_qualified_type_usage()
{