├── .gitignore ├── README.md ├── license.txt ├── pom.xml └── src ├── main ├── java │ └── io │ │ └── federecio │ │ └── dropwizard │ │ └── swagger │ │ ├── ConfigurationHelper.java │ │ ├── Constants.java │ │ ├── SwaggerBundle.java │ │ ├── SwaggerBundleConfiguration.java │ │ ├── SwaggerResource.java │ │ └── SwaggerView.java └── resources │ ├── io │ └── federecio │ │ └── dropwizard │ │ └── swagger │ │ └── index.ftl │ └── swagger-static │ ├── css │ ├── reset.css │ ├── screen.css │ └── typography.css │ ├── fonts │ ├── droid-sans-v6-latin-700.eot │ ├── droid-sans-v6-latin-700.svg │ ├── droid-sans-v6-latin-700.ttf │ ├── droid-sans-v6-latin-700.woff │ ├── droid-sans-v6-latin-700.woff2 │ ├── droid-sans-v6-latin-regular.eot │ ├── droid-sans-v6-latin-regular.svg │ ├── droid-sans-v6-latin-regular.ttf │ ├── droid-sans-v6-latin-regular.woff │ └── droid-sans-v6-latin-regular.woff2 │ ├── images │ ├── explorer_icons.png │ ├── logo_small.png │ ├── pet_store_api.png │ ├── throbber.gif │ └── wordnik_api.png │ ├── index.html │ ├── lib │ ├── backbone-min.js │ ├── handlebars-2.0.0.js │ ├── highlight.7.3.pack.js │ ├── jquery-1.8.0.min.js │ ├── jquery.ba-bbq.min.js │ ├── jquery.slideto.min.js │ ├── jquery.wiggle.min.js │ ├── marked.js │ ├── shred.bundle.js │ ├── shred │ │ └── content.js │ ├── swagger-client.js │ ├── swagger-oauth.js │ └── underscore-min.js │ ├── o2c.html │ ├── swagger-ui.js │ └── swagger-ui.min.js └── test ├── java └── io │ └── federecio │ └── dropwizard │ └── swagger │ ├── DefaultServerTest.java │ ├── DefaultServerWithApplicationContextPathAndRootPathSetTest.java │ ├── DefaultServerWithApplicationContextPathSetTest.java │ ├── DefaultServerWithPathSetProgramaticallyTest.java │ ├── DefaultServerWithRootPathSetTest.java │ ├── DropwizardTest.java │ ├── SimpleServerTest.java │ ├── SimpleServerWithApplicationContextPathAndRootPathSetTest.java │ ├── SimpleServerWithApplicationContextPathSetTest.java │ ├── SimpleServerWithRootPathSetTest.java │ ├── TestApplication.java │ ├── TestApplicationWithAssetsAndPathSetProgramatically.java │ ├── TestApplicationWithPathSetProgramatically.java │ ├── TestConfiguration.java │ ├── TestResource.java │ └── selenium │ ├── DefaultServerSeleniumTest.java │ ├── DefaultServerWithApplicationContextPathAndRootPathSetSeleniumTest.java │ ├── DefaultServerWithApplicationContextPathSetSeleniumTest.java │ ├── DefaultServerWithAssetsSeleniumTest.java │ ├── DefaultServerWithPathSetProgramaticallySeleniumTest.java │ ├── DefaultServerWithRootPathSetSeleniumTest.java │ ├── SeleniumTest.java │ ├── SimpleServerSeleniumTest.java │ ├── SimpleServerWithApplicationContextPathAndRootPathSeleniumTest.java │ ├── SimpleServerWithApplicationContextPathSeleniumTest.java │ └── SimpleServerWithRootPathSeleniumTest.java └── resources ├── myassets └── test.html ├── test-default-assets.yaml ├── test-default-context-and-root-path.yaml ├── test-default-context-path.yaml ├── test-default-root-path.yaml ├── test-default-with-path-set-programatically.yaml ├── test-default.yaml ├── test-simple-with-context-and-root-path.yaml ├── test-simple-with-context-path.yaml ├── test-simple-with-root-path.yaml └── test-simple.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/README.md -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/license.txt -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/ConfigurationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/ConfigurationHelper.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/Constants.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerBundle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerBundle.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerBundleConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerBundleConfiguration.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerResource.java -------------------------------------------------------------------------------- /src/main/java/io/federecio/dropwizard/swagger/SwaggerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/java/io/federecio/dropwizard/swagger/SwaggerView.java -------------------------------------------------------------------------------- /src/main/resources/io/federecio/dropwizard/swagger/index.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/io/federecio/dropwizard/swagger/index.ftl -------------------------------------------------------------------------------- /src/main/resources/swagger-static/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/css/reset.css -------------------------------------------------------------------------------- /src/main/resources/swagger-static/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/css/screen.css -------------------------------------------------------------------------------- /src/main/resources/swagger-static/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/css/typography.css -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.eot -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.svg -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.ttf -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.woff -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-700.woff2 -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.eot -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.svg -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.ttf -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.woff -------------------------------------------------------------------------------- /src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/fonts/droid-sans-v6-latin-regular.woff2 -------------------------------------------------------------------------------- /src/main/resources/swagger-static/images/explorer_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/images/explorer_icons.png -------------------------------------------------------------------------------- /src/main/resources/swagger-static/images/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/images/logo_small.png -------------------------------------------------------------------------------- /src/main/resources/swagger-static/images/pet_store_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/images/pet_store_api.png -------------------------------------------------------------------------------- /src/main/resources/swagger-static/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/images/throbber.gif -------------------------------------------------------------------------------- /src/main/resources/swagger-static/images/wordnik_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/images/wordnik_api.png -------------------------------------------------------------------------------- /src/main/resources/swagger-static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/index.html -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/backbone-min.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/handlebars-2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/handlebars-2.0.0.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/highlight.7.3.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/highlight.7.3.pack.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/jquery-1.8.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/jquery-1.8.0.min.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/jquery.ba-bbq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/jquery.ba-bbq.min.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/jquery.slideto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/jquery.slideto.min.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/jquery.wiggle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/jquery.wiggle.min.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/marked.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/shred.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/shred.bundle.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/shred/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/shred/content.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/swagger-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/swagger-client.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/swagger-oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/swagger-oauth.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/lib/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/lib/underscore-min.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/o2c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/o2c.html -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui.js -------------------------------------------------------------------------------- /src/main/resources/swagger-static/swagger-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/main/resources/swagger-static/swagger-ui.min.js -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApplicationContextPathAndRootPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApplicationContextPathAndRootPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApplicationContextPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithApplicationContextPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithPathSetProgramaticallyTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithPathSetProgramaticallyTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithRootPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DefaultServerWithRootPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/DropwizardTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/DropwizardTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/SimpleServerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/SimpleServerTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithApplicationContextPathAndRootPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithApplicationContextPathAndRootPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithApplicationContextPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithApplicationContextPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithRootPathSetTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/SimpleServerWithRootPathSetTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplication.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithAssetsAndPathSetProgramatically.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithAssetsAndPathSetProgramatically.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithPathSetProgramatically.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestApplicationWithPathSetProgramatically.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestConfiguration.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/TestResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/TestResource.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerSeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithApplicationContextPathAndRootPathSetSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithApplicationContextPathAndRootPathSetSeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithApplicationContextPathSetSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithApplicationContextPathSetSeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithAssetsSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithAssetsSeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithPathSetProgramaticallySeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithPathSetProgramaticallySeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithRootPathSetSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/DefaultServerWithRootPathSetSeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/SeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/SeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/SimpleServerSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/SimpleServerSeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/SimpleServerWithApplicationContextPathAndRootPathSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/SimpleServerWithApplicationContextPathAndRootPathSeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/SimpleServerWithApplicationContextPathSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/SimpleServerWithApplicationContextPathSeleniumTest.java -------------------------------------------------------------------------------- /src/test/java/io/federecio/dropwizard/swagger/selenium/SimpleServerWithRootPathSeleniumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/federecio/dropwizard-swagger/HEAD/src/test/java/io/federecio/dropwizard/swagger/selenium/SimpleServerWithRootPathSeleniumTest.java -------------------------------------------------------------------------------- /src/test/resources/myassets/test.html: -------------------------------------------------------------------------------- 1 |