source: josm/trunk/test/unit/org/openstreetmap/josm/io/auth/JosmPreferencesCredentialAgentTest.java@ 18650

Last change on this file since 18650 was 18650, checked in by taylor.smock, 16 months ago

Fix #20768: Add OAuth 2.0 support

This also fixes #21607: authentication buttons are unavailable when credentials
are set.

File size: 385 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.io.auth;
3
4/**
5 * Test {@link JosmPreferencesCredentialAgent}
6 */
7class JosmPreferencesCredentialAgentTest implements CredentialsAgentTest<JosmPreferencesCredentialAgent> {
8
9 @Override
10 public JosmPreferencesCredentialAgent createAgent() {
11 return new JosmPreferencesCredentialAgent();
12 }
13}
Note: See TracBrowser for help on using the repository browser.