11: Implement Linux RSS/Atom feed parser
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
package com.rssuper.database;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000D\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0012\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0007\u001a\u00020\bH\u0007J\b\u0010\t\u001a\u00020\bH\u0007J@\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\r2\b\b\u0002\u0010\u000f\u001a\u00020\r2\b\b\u0002\u0010\u0010\u001a\u00020\u00112\b\b\u0002\u0010\u0012\u001a\u00020\u00112\b\b\u0002\u0010\u0013\u001a\u00020\u0014H\u0002J\f\u0010\u0015\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u0017\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u0018\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u0019\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u001a\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u001b\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u001c\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u001d\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u001e\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\u001f\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010 \u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010!\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\"\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010#\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010$\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010%\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010&\u001a\u00060\bj\u0002`\u0016H\u0007J\f\u0010\'\u001a\u00060\bj\u0002`\u0016H\u0007R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006("}, d2 = {"Lcom/rssuper/database/FeedItemDaoTest;", "", "()V", "dao", "Lcom/rssuper/database/daos/FeedItemDao;", "database", "Lcom/rssuper/database/RssDatabase;", "closeDb", "", "createDb", "createTestItem", "Lcom/rssuper/database/entities/FeedItemEntity;", "id", "", "subscriptionId", "title", "isRead", "", "isStarred", "published", "Ljava/util/Date;", "deleteItem", "Lkotlinx/coroutines/test/TestResult;", "deleteItemById", "deleteItemsBySubscription", "getItemsAfterDate", "getItemsBySubscription", "getItemsBySubscriptions", "getItemsPaginated", "getStarredItems", "getTotalUnreadCount", "getUnreadCount", "getUnreadItems", "insertAndGetItem", "markAllAsRead", "markAsRead", "markAsStarred", "markAsUnread", "markAsUnstarred", "updateItem", "RSSuper_releaseUnitTest"})
|
||||
public final class FeedItemDaoTest {
|
||||
private com.rssuper.database.RssDatabase database;
|
||||
private com.rssuper.database.daos.FeedItemDao dao;
|
||||
|
||||
public FeedItemDaoTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void createDb() {
|
||||
}
|
||||
|
||||
@org.junit.After()
|
||||
public final void closeDb() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void insertAndGetItem() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getItemsBySubscription() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getItemsBySubscriptions() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getUnreadItems() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getStarredItems() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getItemsAfterDate() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getUnreadCount() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getTotalUnreadCount() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void updateItem() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteItem() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteItemById() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteItemsBySubscription() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void markAsRead() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void markAsUnread() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void markAsStarred() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void markAsUnstarred() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void markAllAsRead() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getItemsPaginated() {
|
||||
}
|
||||
|
||||
private final com.rssuper.database.entities.FeedItemEntity createTestItem(java.lang.String id, java.lang.String subscriptionId, java.lang.String title, boolean isRead, boolean isStarred, java.util.Date published) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,42 @@
|
||||
package com.rssuper.database;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000\u001e\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\u0018\u0002\n\u0002\b\b\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\f\u0010\u0005\u001a\u00060\u0006j\u0002`\u0007H\u0007J\b\u0010\b\u001a\u00020\u0006H\u0007J\b\u0010\t\u001a\u00020\u0006H\u0007J\b\u0010\n\u001a\u00020\u0006H\u0007J\f\u0010\u000b\u001a\u00060\u0006j\u0002`\u0007H\u0007J\b\u0010\f\u001a\u00020\u0006H\u0007J\f\u0010\r\u001a\u00060\u0006j\u0002`\u0007H\u0007J\f\u0010\u000e\u001a\u00060\u0006j\u0002`\u0007H\u0007R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000f"}, d2 = {"Lcom/rssuper/database/RssDatabaseTest;", "", "()V", "database", "Lcom/rssuper/database/RssDatabase;", "cascadeDeleteFeedItems", "", "Lkotlinx/coroutines/test/TestResult;", "closeDb", "createDb", "databaseConstruction", "feedItemEntityRoundTrip", "ftsVirtualTableExists", "searchHistoryEntityRoundTrip", "subscriptionEntityRoundTrip", "RSSuper_releaseUnitTest"})
|
||||
public final class RssDatabaseTest {
|
||||
private com.rssuper.database.RssDatabase database;
|
||||
|
||||
public RssDatabaseTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void createDb() {
|
||||
}
|
||||
|
||||
@org.junit.After()
|
||||
public final void closeDb() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void databaseConstruction() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void ftsVirtualTableExists() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void subscriptionEntityRoundTrip() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void feedItemEntityRoundTrip() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void searchHistoryEntityRoundTrip() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void cascadeDeleteFeedItems() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,67 @@
|
||||
package com.rssuper.database;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000<\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u000b\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0007\u001a\u00020\bH\u0007J\b\u0010\t\u001a\u00020\bH\u0007J\"\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\r2\u0006\u0010\u000e\u001a\u00020\r2\b\b\u0002\u0010\u000f\u001a\u00020\u0010H\u0002J\f\u0010\u0011\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u0013\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u0014\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u0015\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u0016\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u0017\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u0018\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u0019\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u001a\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u001b\u001a\u00060\bj\u0002`\u0012H\u0007J\f\u0010\u001c\u001a\u00060\bj\u0002`\u0012H\u0007R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001d"}, d2 = {"Lcom/rssuper/database/SearchHistoryDaoTest;", "", "()V", "dao", "Lcom/rssuper/database/daos/SearchHistoryDao;", "database", "Lcom/rssuper/database/RssDatabase;", "closeDb", "", "createDb", "createTestSearch", "Lcom/rssuper/database/entities/SearchHistoryEntity;", "id", "", "query", "timestamp", "Ljava/util/Date;", "deleteAllSearchHistory", "Lkotlinx/coroutines/test/TestResult;", "deleteSearchHistory", "deleteSearchHistoryById", "deleteSearchHistoryOlderThan", "getAllSearchHistory", "getRecentSearches", "getSearchHistoryCount", "insertAndGetSearchHistory", "insertSearchHistoryWithConflict", "searchHistory", "updateSearchHistory", "RSSuper_releaseUnitTest"})
|
||||
public final class SearchHistoryDaoTest {
|
||||
private com.rssuper.database.RssDatabase database;
|
||||
private com.rssuper.database.daos.SearchHistoryDao dao;
|
||||
|
||||
public SearchHistoryDaoTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void createDb() {
|
||||
}
|
||||
|
||||
@org.junit.After()
|
||||
public final void closeDb() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void insertAndGetSearchHistory() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getAllSearchHistory() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void searchHistory() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getRecentSearches() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getSearchHistoryCount() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void updateSearchHistory() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteSearchHistory() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteSearchHistoryById() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteAllSearchHistory() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteSearchHistoryOlderThan() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void insertSearchHistoryWithConflict() {
|
||||
}
|
||||
|
||||
private final com.rssuper.database.entities.SearchHistoryEntity createTestSearch(java.lang.String id, java.lang.String query, java.util.Date timestamp) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,71 @@
|
||||
package com.rssuper.database;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000<\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\f\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0007\u001a\u00020\bH\u0007J\b\u0010\t\u001a\u00020\bH\u0007J.\u0010\n\u001a\u00020\u000b2\u0006\u0010\f\u001a\u00020\r2\b\b\u0002\u0010\u000e\u001a\u00020\r2\b\b\u0002\u0010\u000f\u001a\u00020\r2\b\b\u0002\u0010\u0010\u001a\u00020\u0011H\u0002J\f\u0010\u0012\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u0014\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u0015\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u0016\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u0017\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u0018\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u0019\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u001a\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u001b\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u001c\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u001d\u001a\u00060\bj\u0002`\u0013H\u0007J\f\u0010\u001e\u001a\u00060\bj\u0002`\u0013H\u0007R\u000e\u0010\u0003\u001a\u00020\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001f"}, d2 = {"Lcom/rssuper/database/SubscriptionDaoTest;", "", "()V", "dao", "Lcom/rssuper/database/daos/SubscriptionDao;", "database", "Lcom/rssuper/database/RssDatabase;", "closeDb", "", "createDb", "createTestSubscription", "Lcom/rssuper/database/entities/SubscriptionEntity;", "id", "", "url", "title", "enabled", "", "deleteSubscription", "Lkotlinx/coroutines/test/TestResult;", "deleteSubscriptionById", "getAllSubscriptions", "getEnabledSubscriptions", "getSubscriptionByUrl", "getSubscriptionCount", "insertAndGetSubscription", "insertSubscriptionWithConflict", "updateError", "updateLastFetchedAt", "updateNextFetchAt", "updateSubscription", "RSSuper_releaseUnitTest"})
|
||||
public final class SubscriptionDaoTest {
|
||||
private com.rssuper.database.RssDatabase database;
|
||||
private com.rssuper.database.daos.SubscriptionDao dao;
|
||||
|
||||
public SubscriptionDaoTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void createDb() {
|
||||
}
|
||||
|
||||
@org.junit.After()
|
||||
public final void closeDb() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void insertAndGetSubscription() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getSubscriptionByUrl() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getAllSubscriptions() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getEnabledSubscriptions() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void updateSubscription() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteSubscription() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void deleteSubscriptionById() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void getSubscriptionCount() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void updateError() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void updateLastFetchedAt() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void updateNextFetchAt() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void insertSubscriptionWithConflict() {
|
||||
}
|
||||
|
||||
private final com.rssuper.database.entities.SubscriptionEntity createTestSubscription(java.lang.String id, java.lang.String url, java.lang.String title, boolean enabled) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,43 @@
|
||||
package com.rssuper.models;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\b\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\b\u001a\u00020\tH\u0007J\b\u0010\n\u001a\u00020\tH\u0007J\b\u0010\u000b\u001a\u00020\tH\u0007J\b\u0010\f\u001a\u00020\tH\u0007J\b\u0010\r\u001a\u00020\tH\u0007J\b\u0010\u000e\u001a\u00020\tH\u0007J\b\u0010\u000f\u001a\u00020\tH\u0007J\b\u0010\u0010\u001a\u00020\tH\u0007R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0011"}, d2 = {"Lcom/rssuper/models/FeedItemTest;", "", "()V", "adapter", "Lcom/squareup/moshi/JsonAdapter;", "Lcom/rssuper/models/FeedItem;", "moshi", "Lcom/squareup/moshi/Moshi;", "setup", "", "testCopy", "testDeserialization", "testEnclosureSerialization", "testEqualsAndHashCode", "testOptionalFieldsNull", "testSerialization", "testToString", "RSSuper_releaseUnitTest"})
|
||||
public final class FeedItemTest {
|
||||
private com.squareup.moshi.Moshi moshi;
|
||||
private com.squareup.moshi.JsonAdapter<com.rssuper.models.FeedItem> adapter;
|
||||
|
||||
public FeedItemTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void setup() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testOptionalFieldsNull() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEnclosureSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testCopy() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEqualsAndHashCode() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testToString() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,47 @@
|
||||
package com.rssuper.models;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\t\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\b\u001a\u00020\tH\u0007J\b\u0010\n\u001a\u00020\tH\u0007J\b\u0010\u000b\u001a\u00020\tH\u0007J\b\u0010\f\u001a\u00020\tH\u0007J\b\u0010\r\u001a\u00020\tH\u0007J\b\u0010\u000e\u001a\u00020\tH\u0007J\b\u0010\u000f\u001a\u00020\tH\u0007J\b\u0010\u0010\u001a\u00020\tH\u0007J\b\u0010\u0011\u001a\u00020\tH\u0007R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0012"}, d2 = {"Lcom/rssuper/models/FeedSubscriptionTest;", "", "()V", "adapter", "Lcom/squareup/moshi/JsonAdapter;", "Lcom/rssuper/models/FeedSubscription;", "moshi", "Lcom/squareup/moshi/Moshi;", "setup", "", "testCopy", "testDeserialization", "testEqualsAndHashCode", "testHttpAuthDeserialization", "testHttpAuthSerialization", "testOptionalFieldsNull", "testSerialization", "testToString", "RSSuper_releaseUnitTest"})
|
||||
public final class FeedSubscriptionTest {
|
||||
private com.squareup.moshi.Moshi moshi;
|
||||
private com.squareup.moshi.JsonAdapter<com.rssuper.models.FeedSubscription> adapter;
|
||||
|
||||
public FeedSubscriptionTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void setup() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testOptionalFieldsNull() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testHttpAuthSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testHttpAuthDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testCopy() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEqualsAndHashCode() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testToString() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,43 @@
|
||||
package com.rssuper.models;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\b\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\b\u001a\u00020\tH\u0007J\b\u0010\n\u001a\u00020\tH\u0007J\b\u0010\u000b\u001a\u00020\tH\u0007J\b\u0010\f\u001a\u00020\tH\u0007J\b\u0010\r\u001a\u00020\tH\u0007J\b\u0010\u000e\u001a\u00020\tH\u0007J\b\u0010\u000f\u001a\u00020\tH\u0007J\b\u0010\u0010\u001a\u00020\tH\u0007R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0011"}, d2 = {"Lcom/rssuper/models/FeedTest;", "", "()V", "adapter", "Lcom/squareup/moshi/JsonAdapter;", "Lcom/rssuper/models/Feed;", "moshi", "Lcom/squareup/moshi/Moshi;", "setup", "", "testCopy", "testDeserialization", "testEmptyItemsList", "testEqualsAndHashCode", "testOptionalFieldsNull", "testSerialization", "testToString", "RSSuper_releaseUnitTest"})
|
||||
public final class FeedTest {
|
||||
private com.squareup.moshi.Moshi moshi;
|
||||
private com.squareup.moshi.JsonAdapter<com.rssuper.models.Feed> adapter;
|
||||
|
||||
public FeedTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void setup() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testOptionalFieldsNull() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEmptyItemsList() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testCopy() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEqualsAndHashCode() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testToString() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,39 @@
|
||||
package com.rssuper.models;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\b\u001a\u00020\tH\u0007J\b\u0010\n\u001a\u00020\tH\u0007J\b\u0010\u000b\u001a\u00020\tH\u0007J\b\u0010\f\u001a\u00020\tH\u0007J\b\u0010\r\u001a\u00020\tH\u0007J\b\u0010\u000e\u001a\u00020\tH\u0007J\b\u0010\u000f\u001a\u00020\tH\u0007R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0010"}, d2 = {"Lcom/rssuper/models/NotificationPreferencesTest;", "", "()V", "adapter", "Lcom/squareup/moshi/JsonAdapter;", "Lcom/rssuper/models/NotificationPreferences;", "moshi", "Lcom/squareup/moshi/Moshi;", "setup", "", "testCopy", "testDefaultValues", "testDeserialization", "testEqualsAndHashCode", "testSerialization", "testToString", "RSSuper_releaseUnitTest"})
|
||||
public final class NotificationPreferencesTest {
|
||||
private com.squareup.moshi.Moshi moshi;
|
||||
private com.squareup.moshi.JsonAdapter<com.rssuper.models.NotificationPreferences> adapter;
|
||||
|
||||
public NotificationPreferencesTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void setup() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testDefaultValues() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testCopy() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEqualsAndHashCode() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testToString() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,47 @@
|
||||
package com.rssuper.models;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\t\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\b\u001a\u00020\tH\u0007J\b\u0010\n\u001a\u00020\tH\u0007J\b\u0010\u000b\u001a\u00020\tH\u0007J\b\u0010\f\u001a\u00020\tH\u0007J\b\u0010\r\u001a\u00020\tH\u0007J\b\u0010\u000e\u001a\u00020\tH\u0007J\b\u0010\u000f\u001a\u00020\tH\u0007J\b\u0010\u0010\u001a\u00020\tH\u0007J\b\u0010\u0011\u001a\u00020\tH\u0007R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0012"}, d2 = {"Lcom/rssuper/models/ReadingPreferencesTest;", "", "()V", "adapter", "Lcom/squareup/moshi/JsonAdapter;", "Lcom/rssuper/models/ReadingPreferences;", "moshi", "Lcom/squareup/moshi/Moshi;", "setup", "", "testCopy", "testDefaultValues", "testDeserialization", "testEqualsAndHashCode", "testFontSizeOptions", "testLineHeightOptions", "testSerialization", "testToString", "RSSuper_releaseUnitTest"})
|
||||
public final class ReadingPreferencesTest {
|
||||
private com.squareup.moshi.Moshi moshi;
|
||||
private com.squareup.moshi.JsonAdapter<com.rssuper.models.ReadingPreferences> adapter;
|
||||
|
||||
public ReadingPreferencesTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void setup() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testFontSizeOptions() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testLineHeightOptions() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testDefaultValues() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testCopy() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEqualsAndHashCode() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testToString() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,51 @@
|
||||
package com.rssuper.models;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\n\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\b\u001a\u00020\tH\u0007J\b\u0010\n\u001a\u00020\tH\u0007J\b\u0010\u000b\u001a\u00020\tH\u0007J\b\u0010\f\u001a\u00020\tH\u0007J\b\u0010\r\u001a\u00020\tH\u0007J\b\u0010\u000e\u001a\u00020\tH\u0007J\b\u0010\u000f\u001a\u00020\tH\u0007J\b\u0010\u0010\u001a\u00020\tH\u0007J\b\u0010\u0011\u001a\u00020\tH\u0007J\b\u0010\u0012\u001a\u00020\tH\u0007R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0013"}, d2 = {"Lcom/rssuper/models/SearchFiltersTest;", "", "()V", "adapter", "Lcom/squareup/moshi/JsonAdapter;", "Lcom/rssuper/models/SearchFilters;", "moshi", "Lcom/squareup/moshi/Moshi;", "setup", "", "testContentTypeAudio", "testContentTypeVideo", "testCopy", "testDeserialization", "testEqualsAndHashCode", "testOptionalFieldsNull", "testSerialization", "testSortOptions", "testToString", "RSSuper_releaseUnitTest"})
|
||||
public final class SearchFiltersTest {
|
||||
private com.squareup.moshi.Moshi moshi;
|
||||
private com.squareup.moshi.JsonAdapter<com.rssuper.models.SearchFilters> adapter;
|
||||
|
||||
public SearchFiltersTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void setup() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testContentTypeAudio() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testContentTypeVideo() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testSortOptions() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testOptionalFieldsNull() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testCopy() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEqualsAndHashCode() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testToString() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,47 @@
|
||||
package com.rssuper.models;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\t\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\b\u001a\u00020\tH\u0007J\b\u0010\n\u001a\u00020\tH\u0007J\b\u0010\u000b\u001a\u00020\tH\u0007J\b\u0010\f\u001a\u00020\tH\u0007J\b\u0010\r\u001a\u00020\tH\u0007J\b\u0010\u000e\u001a\u00020\tH\u0007J\b\u0010\u000f\u001a\u00020\tH\u0007J\b\u0010\u0010\u001a\u00020\tH\u0007J\b\u0010\u0011\u001a\u00020\tH\u0007R\u0014\u0010\u0003\u001a\b\u0012\u0004\u0012\u00020\u00050\u0004X\u0082.\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0007X\u0082.\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0012"}, d2 = {"Lcom/rssuper/models/SearchResultTest;", "", "()V", "adapter", "Lcom/squareup/moshi/JsonAdapter;", "Lcom/rssuper/models/SearchResult;", "moshi", "Lcom/squareup/moshi/Moshi;", "setup", "", "testArticleDeserialization", "testArticleSerialization", "testCopy", "testEqualsAndHashCode", "testFeedDeserialization", "testFeedSerialization", "testOptionalFieldsNull", "testToString", "RSSuper_releaseUnitTest"})
|
||||
public final class SearchResultTest {
|
||||
private com.squareup.moshi.Moshi moshi;
|
||||
private com.squareup.moshi.JsonAdapter<com.rssuper.models.SearchResult> adapter;
|
||||
|
||||
public SearchResultTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Before()
|
||||
public final void setup() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testArticleSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testFeedSerialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testArticleDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testFeedDeserialization() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testOptionalFieldsNull() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testCopy() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testEqualsAndHashCode() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testToString() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,45 @@
|
||||
package com.rssuper.parsing;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\t\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H\u0007J\b\u0010\u0005\u001a\u00020\u0004H\u0007J\b\u0010\u0006\u001a\u00020\u0004H\u0007J\b\u0010\u0007\u001a\u00020\u0004H\u0007J\b\u0010\b\u001a\u00020\u0004H\u0007J\b\u0010\t\u001a\u00020\u0004H\u0007J\b\u0010\n\u001a\u00020\u0004H\u0007J\b\u0010\u000b\u001a\u00020\u0004H\u0007J\b\u0010\f\u001a\u00020\u0004H\u0007\u00a8\u0006\r"}, d2 = {"Lcom/rssuper/parsing/AtomParserTest;", "", "()V", "testParseAtomWithAuthor", "", "testParseAtomWithCategories", "testParseAtomWithContent", "testParseAtomWithEmptyFeed", "testParseAtomWithEnclosure", "testParseAtomWithMissingFields", "testParseAtomWithPublished", "testParseAtomWithiTunesExtension", "testParseBasicAtom", "RSSuper_releaseUnitTest"})
|
||||
public final class AtomParserTest {
|
||||
|
||||
public AtomParserTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseBasicAtom() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomWithAuthor() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomWithCategories() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomWithEnclosure() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomWithContent() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomWithiTunesExtension() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomWithPublished() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomWithEmptyFeed() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomWithMissingFields() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,41 @@
|
||||
package com.rssuper.parsing;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\b\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H\u0007J\b\u0010\u0005\u001a\u00020\u0004H\u0007J\b\u0010\u0006\u001a\u00020\u0004H\u0007J\b\u0010\u0007\u001a\u00020\u0004H\u0007J\b\u0010\b\u001a\u00020\u0004H\u0007J\b\u0010\t\u001a\u00020\u0004H\u0007J\b\u0010\n\u001a\u00020\u0004H\u0007J\b\u0010\u000b\u001a\u00020\u0004H\u0007\u00a8\u0006\f"}, d2 = {"Lcom/rssuper/parsing/FeedParserTest;", "", "()V", "testAsyncCallback", "", "testAsyncCallbackError", "testParseAtomFeed", "testParseEmptyFeed", "testParseInvalidFeedType", "testParseMalformedXml", "testParseRSSFeed", "testParseRSSWithNamespaces", "RSSuper_releaseUnitTest"})
|
||||
public final class FeedParserTest {
|
||||
|
||||
public FeedParserTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSFeed() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseAtomFeed() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithNamespaces() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseMalformedXml() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseInvalidFeedType() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseEmptyFeed() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testAsyncCallback() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testAsyncCallbackError() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,45 @@
|
||||
package com.rssuper.parsing;
|
||||
|
||||
@kotlin.Metadata(mv = {1, 9, 0}, k = 1, xi = 48, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0002\b\t\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0003\u001a\u00020\u0004H\u0007J\b\u0010\u0005\u001a\u00020\u0004H\u0007J\b\u0010\u0006\u001a\u00020\u0004H\u0007J\b\u0010\u0007\u001a\u00020\u0004H\u0007J\b\u0010\b\u001a\u00020\u0004H\u0007J\b\u0010\t\u001a\u00020\u0004H\u0007J\b\u0010\n\u001a\u00020\u0004H\u0007J\b\u0010\u000b\u001a\u00020\u0004H\u0007J\b\u0010\f\u001a\u00020\u0004H\u0007\u00a8\u0006\r"}, d2 = {"Lcom/rssuper/parsing/RSSParserTest;", "", "()V", "testParseBasicRSS", "", "testParseRSSWithAuthor", "testParseRSSWithCDATA", "testParseRSSWithCategories", "testParseRSSWithContentNamespace", "testParseRSSWithEmptyChannel", "testParseRSSWithGuid", "testParseRSSWithMissingFields", "testParseRSSWithiTunesNamespace", "RSSuper_releaseUnitTest"})
|
||||
public final class RSSParserTest {
|
||||
|
||||
public RSSParserTest() {
|
||||
super();
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseBasicRSS() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithiTunesNamespace() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithContentNamespace() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithCategories() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithAuthor() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithGuid() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithEmptyChannel() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithMissingFields() {
|
||||
}
|
||||
|
||||
@org.junit.Test()
|
||||
public final void testParseRSSWithCDATA() {
|
||||
}
|
||||
}
|
||||
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
package error;
|
||||
|
||||
public final class NonExistentClass {
|
||||
}
|
||||
Reference in New Issue
Block a user