├── .gitattributes ├── .gitignore ├── Chapter 1 └── HelloWorld │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── libraries │ │ ├── SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml │ │ ├── SBT__org_scala_lang_scala_library_2_11_8_jar.xml │ │ ├── SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml │ │ └── SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── helloworld-build.iml │ │ └── helloworld.iml │ ├── sbt.xml │ ├── scala_compiler.xml │ ├── vcs.xml │ └── workspace.xml │ ├── build.sbt │ ├── project │ ├── build.properties │ └── target │ │ ├── config-classes │ │ ├── $1dd5927e7356c08085d1$$anonfun$$sbtdef$1.class │ │ ├── $1dd5927e7356c08085d1$.class │ │ ├── $1dd5927e7356c08085d1.cache │ │ ├── $1dd5927e7356c08085d1.class │ │ ├── $928033f242c1641a65cb$$anonfun$$sbtdef$1$$anonfun$apply$1.class │ │ ├── $928033f242c1641a65cb$$anonfun$$sbtdef$1.class │ │ ├── $928033f242c1641a65cb$.class │ │ ├── $928033f242c1641a65cb.cache │ │ ├── $928033f242c1641a65cb.class │ │ ├── $996db1fbb14004b8ffe7$$anonfun$$sbtdef$1.class │ │ ├── $996db1fbb14004b8ffe7$.class │ │ ├── $996db1fbb14004b8ffe7.cache │ │ ├── $996db1fbb14004b8ffe7.class │ │ ├── $a25057f37481ed880245$$anonfun$$sbtdef$1.class │ │ ├── $a25057f37481ed880245$.class │ │ ├── $a25057f37481ed880245.cache │ │ ├── $a25057f37481ed880245.class │ │ ├── $a71963adbe00ba65c576$$anonfun$$sbtdef$1.class │ │ ├── $a71963adbe00ba65c576$.class │ │ ├── $a71963adbe00ba65c576.cache │ │ ├── $a71963adbe00ba65c576.class │ │ ├── $c28991be80365d29a6a6$$anonfun$$sbtdef$1.class │ │ ├── $c28991be80365d29a6a6$.class │ │ ├── $c28991be80365d29a6a6.cache │ │ ├── $c28991be80365d29a6a6.class │ │ ├── $efced808f705599c06f2$$anonfun$$sbtdef$1.class │ │ ├── $efced808f705599c06f2$.class │ │ ├── $efced808f705599c06f2.cache │ │ └── $efced808f705599c06f2.class │ │ ├── resolution-cache │ │ ├── default │ │ │ └── helloworld-build │ │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── reports │ │ │ ├── default-helloworld-build-compile-internal.xml │ │ │ ├── default-helloworld-build-compile.xml │ │ │ ├── default-helloworld-build-docs.xml │ │ │ ├── default-helloworld-build-optional.xml │ │ │ ├── default-helloworld-build-plugin.xml │ │ │ ├── default-helloworld-build-pom.xml │ │ │ ├── default-helloworld-build-provided.xml │ │ │ ├── default-helloworld-build-runtime-internal.xml │ │ │ ├── default-helloworld-build-runtime.xml │ │ │ ├── default-helloworld-build-scala-tool.xml │ │ │ ├── default-helloworld-build-sources.xml │ │ │ ├── default-helloworld-build-test-internal.xml │ │ │ ├── default-helloworld-build-test.xml │ │ │ ├── ivy-report.css │ │ │ └── ivy-report.xsl │ │ └── streams │ │ ├── $global │ │ ├── $global │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── dependencyPositions │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── update_cache_2.10 │ │ │ │ ├── input_dsp │ │ │ │ └── output_dsp │ │ ├── ivyConfiguration │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── ivySbt │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── projectDescriptors │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── streams │ │ │ ├── out │ │ │ └── update_cache_2.10 │ │ │ ├── inputs │ │ │ └── output │ │ ├── compile │ │ ├── $global │ │ │ └── $global │ │ │ │ └── discoveredMainClasses │ │ │ │ └── data │ │ ├── compile │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── compileIncremental │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── export │ │ │ │ └── out │ │ ├── copyResources │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── copy-resources │ │ │ │ └── out │ │ ├── dependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── runtime │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── src │ ├── main │ │ └── scala-2.11 │ │ │ └── com │ │ │ └── packt │ │ │ └── Hello.scala │ └── test │ │ └── scala-2.11 │ │ └── com │ │ └── packt │ │ └── HelloTest.scala │ └── target │ ├── .history │ ├── resolution-cache │ ├── default │ │ └── helloworld_2.11 │ │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-helloworld_2.11-compile-internal.xml │ │ ├── default-helloworld_2.11-compile.xml │ │ ├── default-helloworld_2.11-docs.xml │ │ ├── default-helloworld_2.11-optional.xml │ │ ├── default-helloworld_2.11-plugin.xml │ │ ├── default-helloworld_2.11-pom.xml │ │ ├── default-helloworld_2.11-provided.xml │ │ ├── default-helloworld_2.11-runtime-internal.xml │ │ ├── default-helloworld_2.11-runtime.xml │ │ ├── default-helloworld_2.11-scala-tool.xml │ │ ├── default-helloworld_2.11-sources.xml │ │ ├── default-helloworld_2.11-test-internal.xml │ │ ├── default-helloworld_2.11-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ ├── scala-2.11 │ ├── classes │ │ └── com │ │ │ └── packt │ │ │ ├── Hello$.class │ │ │ └── Hello.class │ └── test-classes │ │ └── com │ │ └── packt │ │ ├── HelloTests$$anonfun$1.class │ │ └── HelloTests.class │ ├── streams │ ├── $global │ │ ├── $global │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── clean │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── dependencyPositions │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── update_cache_2.11 │ │ │ │ ├── input_dsp │ │ │ │ └── output_dsp │ │ ├── ivyConfiguration │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── ivySbt │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── projectDescriptors │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── streams │ │ │ ├── out │ │ │ └── update_cache_2.11 │ │ │ ├── inputs │ │ │ └── output │ ├── compile │ │ ├── $global │ │ │ └── $global │ │ │ │ └── discoveredMainClasses │ │ │ │ └── data │ │ ├── compile │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── compileIncremental │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── export │ │ │ │ └── out │ │ ├── copyResources │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── copy-resources │ │ │ │ └── out │ │ ├── dependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── incCompileSetup │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── inc_compile_2.11 │ │ ├── internalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── runtime │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── test │ │ ├── $global │ │ └── $global │ │ │ ├── definedTestNames │ │ │ └── data │ │ │ └── discoveredMainClasses │ │ │ └── data │ │ ├── compile │ │ └── $global │ │ │ └── streams │ │ │ └── out │ │ ├── compileIncremental │ │ └── $global │ │ │ └── streams │ │ │ ├── export │ │ │ └── out │ │ ├── copyResources │ │ └── $global │ │ │ └── streams │ │ │ ├── copy-resources │ │ │ └── out │ │ ├── definedTests │ │ └── $global │ │ │ └── streams │ │ │ └── out │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── incCompileSetup │ │ └── $global │ │ │ └── streams │ │ │ └── inc_compile_2.11 │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── loadedTestFrameworks │ │ └── $global │ │ │ └── streams │ │ │ └── out │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── test │ │ ├── $global │ │ │ └── streams │ │ │ │ ├── out │ │ │ │ └── succeeded_tests │ │ └── isModule=false name=com.packt.HelloTests │ │ │ └── test │ │ │ └── out │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── test-reports │ └── com.packt.HelloTests.xml ├── Chapter 2 └── BaseConversionAPI │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── libraries │ │ ├── SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml │ │ ├── SBT__org_scala_lang_scala_library_2_11_8_jar.xml │ │ ├── SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml │ │ └── SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── baseconversionapi-build.iml │ │ └── baseconversionapi.iml │ ├── sbt.xml │ ├── scala_compiler.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml │ ├── build.sbt │ ├── project │ ├── build.properties │ └── target │ │ ├── config-classes │ │ ├── $14a6a477e6b5ac8d15bf$$anonfun$$sbtdef$1.class │ │ ├── $14a6a477e6b5ac8d15bf$.class │ │ ├── $14a6a477e6b5ac8d15bf.cache │ │ ├── $14a6a477e6b5ac8d15bf.class │ │ ├── $192ebbb4955d338bfa97$$anonfun$$sbtdef$1.class │ │ ├── $192ebbb4955d338bfa97$.class │ │ ├── $192ebbb4955d338bfa97.cache │ │ ├── $192ebbb4955d338bfa97.class │ │ ├── $1dd3e6d60755bed71714$$anonfun$$sbtdef$1.class │ │ ├── $1dd3e6d60755bed71714$.class │ │ ├── $1dd3e6d60755bed71714.cache │ │ ├── $1dd3e6d60755bed71714.class │ │ ├── $2d8acc17b15fad2c4319$$anonfun$$sbtdef$1.class │ │ ├── $2d8acc17b15fad2c4319$.class │ │ ├── $2d8acc17b15fad2c4319.cache │ │ ├── $2d8acc17b15fad2c4319.class │ │ ├── $54b1a58f4589da1dafa0$$anonfun$$sbtdef$1$$anonfun$apply$1.class │ │ ├── $54b1a58f4589da1dafa0$$anonfun$$sbtdef$1.class │ │ ├── $54b1a58f4589da1dafa0$.class │ │ ├── $54b1a58f4589da1dafa0.cache │ │ ├── $54b1a58f4589da1dafa0.class │ │ ├── $6fb33301d490e12b2e45$$anonfun$$sbtdef$1.class │ │ ├── $6fb33301d490e12b2e45$.class │ │ ├── $6fb33301d490e12b2e45.cache │ │ ├── $6fb33301d490e12b2e45.class │ │ ├── $b47a0afd38795e03299e$$anonfun$$sbtdef$1.class │ │ ├── $b47a0afd38795e03299e$.class │ │ ├── $b47a0afd38795e03299e.cache │ │ └── $b47a0afd38795e03299e.class │ │ ├── resolution-cache │ │ ├── default │ │ │ ├── baseconversionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ ├── compressionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ └── helloworld-build │ │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── reports │ │ │ ├── default-baseconversionapi-build-compile-internal.xml │ │ │ ├── default-baseconversionapi-build-compile.xml │ │ │ ├── default-baseconversionapi-build-docs.xml │ │ │ ├── default-baseconversionapi-build-optional.xml │ │ │ ├── default-baseconversionapi-build-plugin.xml │ │ │ ├── default-baseconversionapi-build-pom.xml │ │ │ ├── default-baseconversionapi-build-provided.xml │ │ │ ├── default-baseconversionapi-build-runtime-internal.xml │ │ │ ├── default-baseconversionapi-build-runtime.xml │ │ │ ├── default-baseconversionapi-build-scala-tool.xml │ │ │ ├── default-baseconversionapi-build-sources.xml │ │ │ ├── default-baseconversionapi-build-test-internal.xml │ │ │ ├── default-baseconversionapi-build-test.xml │ │ │ ├── default-compressionapi-build-compile-internal.xml │ │ │ ├── default-compressionapi-build-compile.xml │ │ │ ├── default-compressionapi-build-docs.xml │ │ │ ├── default-compressionapi-build-optional.xml │ │ │ ├── default-compressionapi-build-plugin.xml │ │ │ ├── default-compressionapi-build-pom.xml │ │ │ ├── default-compressionapi-build-provided.xml │ │ │ ├── default-compressionapi-build-runtime-internal.xml │ │ │ ├── default-compressionapi-build-runtime.xml │ │ │ ├── default-compressionapi-build-scala-tool.xml │ │ │ ├── default-compressionapi-build-sources.xml │ │ │ ├── default-compressionapi-build-test-internal.xml │ │ │ ├── default-compressionapi-build-test.xml │ │ │ ├── default-helloworld-build-compile-internal.xml │ │ │ ├── default-helloworld-build-compile.xml │ │ │ ├── default-helloworld-build-docs.xml │ │ │ ├── default-helloworld-build-optional.xml │ │ │ ├── default-helloworld-build-plugin.xml │ │ │ ├── default-helloworld-build-pom.xml │ │ │ ├── default-helloworld-build-provided.xml │ │ │ ├── default-helloworld-build-runtime-internal.xml │ │ │ ├── default-helloworld-build-runtime.xml │ │ │ ├── default-helloworld-build-scala-tool.xml │ │ │ ├── default-helloworld-build-sources.xml │ │ │ ├── default-helloworld-build-test-internal.xml │ │ │ ├── default-helloworld-build-test.xml │ │ │ ├── ivy-report.css │ │ │ └── ivy-report.xsl │ │ └── streams │ │ ├── $global │ │ ├── $global │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── dependencyPositions │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── update_cache_2.10 │ │ │ │ ├── input_dsp │ │ │ │ └── output_dsp │ │ ├── ivyConfiguration │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── ivySbt │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── projectDescriptors │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── streams │ │ │ ├── out │ │ │ └── update_cache_2.10 │ │ │ ├── inputs │ │ │ └── output │ │ ├── compile │ │ ├── $global │ │ │ └── $global │ │ │ │ └── discoveredMainClasses │ │ │ │ └── data │ │ ├── compile │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── compileIncremental │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── export │ │ │ │ └── out │ │ ├── copyResources │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── copy-resources │ │ │ │ └── out │ │ ├── dependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── runtime │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── src │ ├── main │ │ └── scala-2.11 │ │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion.scala │ │ │ └── package.scala │ └── test │ │ └── scala-2.11 │ │ └── com │ │ └── packt │ │ ├── BeanSpec.scala │ │ ├── BinaryToDecimalSpec.scala │ │ └── DecimalBinarySpec.scala │ └── target │ ├── .history │ ├── resolution-cache │ ├── default │ │ └── baseconversionapi_2.11 │ │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-baseconversionapi_2.11-compile-internal.xml │ │ ├── default-baseconversionapi_2.11-compile.xml │ │ ├── default-baseconversionapi_2.11-docs.xml │ │ ├── default-baseconversionapi_2.11-optional.xml │ │ ├── default-baseconversionapi_2.11-plugin.xml │ │ ├── default-baseconversionapi_2.11-pom.xml │ │ ├── default-baseconversionapi_2.11-provided.xml │ │ ├── default-baseconversionapi_2.11-runtime-internal.xml │ │ ├── default-baseconversionapi_2.11-runtime.xml │ │ ├── default-baseconversionapi_2.11-scala-tool.xml │ │ ├── default-baseconversionapi_2.11-sources.xml │ │ ├── default-baseconversionapi_2.11-test-internal.xml │ │ ├── default-baseconversionapi_2.11-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ ├── scala-2.11 │ ├── classes │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion$$anonfun$1.class │ │ │ ├── BaseConversion$.class │ │ │ ├── BaseConversion.class │ │ │ ├── package$.class │ │ │ ├── package$Binary$.class │ │ │ ├── package$Binary.class │ │ │ ├── package$Decimal$.class │ │ │ ├── package$Decimal.class │ │ │ ├── package$Number$$anonfun$1.class │ │ │ ├── package$Number$$anonfun$2.class │ │ │ ├── package$Number$class.class │ │ │ ├── package$Number.class │ │ │ └── package.class │ └── test-classes │ │ └── com │ │ └── packt │ │ ├── BeanSpec$$anonfun$1.class │ │ ├── BeanSpec$$anonfun$2$$anonfun$apply$mcV$sp$1.class │ │ ├── BeanSpec$$anonfun$2.class │ │ ├── BeanSpec.class │ │ ├── BinaryToDecimalSpec$$anonfun$1.class │ │ ├── BinaryToDecimalSpec$$anonfun$2.class │ │ ├── BinaryToDecimalSpec$$anonfun$3.class │ │ ├── BinaryToDecimalSpec.class │ │ ├── DecimalBinarySpec$$anonfun$1.class │ │ ├── DecimalBinarySpec$$anonfun$2.class │ │ ├── DecimalBinarySpec$$anonfun$3.class │ │ └── DecimalBinarySpec.class │ └── streams │ ├── $global │ ├── clean │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.11 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.11 │ │ ├── inputs │ │ └── output │ ├── compile │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── runtime │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── test │ ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export │ └── unmanagedJars │ └── $global │ └── streams │ └── export ├── Chapter 3 ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── libraries │ │ ├── SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml │ │ ├── SBT__org_scala_lang_scala_library_2_11_8_jar.xml │ │ ├── SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml │ │ └── SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── baseconversionapi-build.iml │ │ └── baseconversionapi.iml │ ├── sbt.xml │ ├── scala_compiler.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml ├── build.sbt ├── project │ ├── build.properties │ └── target │ │ ├── config-classes │ │ ├── $14a6a477e6b5ac8d15bf$$anonfun$$sbtdef$1.class │ │ ├── $14a6a477e6b5ac8d15bf$.class │ │ ├── $14a6a477e6b5ac8d15bf.cache │ │ ├── $14a6a477e6b5ac8d15bf.class │ │ ├── $192ebbb4955d338bfa97$$anonfun$$sbtdef$1.class │ │ ├── $192ebbb4955d338bfa97$.class │ │ ├── $192ebbb4955d338bfa97.cache │ │ ├── $192ebbb4955d338bfa97.class │ │ ├── $1dd3e6d60755bed71714$$anonfun$$sbtdef$1.class │ │ ├── $1dd3e6d60755bed71714$.class │ │ ├── $1dd3e6d60755bed71714.cache │ │ ├── $1dd3e6d60755bed71714.class │ │ ├── $2d8acc17b15fad2c4319$$anonfun$$sbtdef$1.class │ │ ├── $2d8acc17b15fad2c4319$.class │ │ ├── $2d8acc17b15fad2c4319.cache │ │ ├── $2d8acc17b15fad2c4319.class │ │ ├── $54b1a58f4589da1dafa0$$anonfun$$sbtdef$1$$anonfun$apply$1.class │ │ ├── $54b1a58f4589da1dafa0$$anonfun$$sbtdef$1.class │ │ ├── $54b1a58f4589da1dafa0$.class │ │ ├── $54b1a58f4589da1dafa0.cache │ │ ├── $54b1a58f4589da1dafa0.class │ │ ├── $6fb33301d490e12b2e45$$anonfun$$sbtdef$1.class │ │ ├── $6fb33301d490e12b2e45$.class │ │ ├── $6fb33301d490e12b2e45.cache │ │ ├── $6fb33301d490e12b2e45.class │ │ ├── $b47a0afd38795e03299e$$anonfun$$sbtdef$1.class │ │ ├── $b47a0afd38795e03299e$.class │ │ ├── $b47a0afd38795e03299e.cache │ │ └── $b47a0afd38795e03299e.class │ │ ├── resolution-cache │ │ ├── default │ │ │ ├── baseconversionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ ├── compressionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ └── helloworld-build │ │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── reports │ │ │ ├── default-baseconversionapi-build-compile-internal.xml │ │ │ ├── default-baseconversionapi-build-compile.xml │ │ │ ├── default-baseconversionapi-build-docs.xml │ │ │ ├── default-baseconversionapi-build-optional.xml │ │ │ ├── default-baseconversionapi-build-plugin.xml │ │ │ ├── default-baseconversionapi-build-pom.xml │ │ │ ├── default-baseconversionapi-build-provided.xml │ │ │ ├── default-baseconversionapi-build-runtime-internal.xml │ │ │ ├── default-baseconversionapi-build-runtime.xml │ │ │ ├── default-baseconversionapi-build-scala-tool.xml │ │ │ ├── default-baseconversionapi-build-sources.xml │ │ │ ├── default-baseconversionapi-build-test-internal.xml │ │ │ ├── default-baseconversionapi-build-test.xml │ │ │ ├── default-compressionapi-build-compile-internal.xml │ │ │ ├── default-compressionapi-build-compile.xml │ │ │ ├── default-compressionapi-build-docs.xml │ │ │ ├── default-compressionapi-build-optional.xml │ │ │ ├── default-compressionapi-build-plugin.xml │ │ │ ├── default-compressionapi-build-pom.xml │ │ │ ├── default-compressionapi-build-provided.xml │ │ │ ├── default-compressionapi-build-runtime-internal.xml │ │ │ ├── default-compressionapi-build-runtime.xml │ │ │ ├── default-compressionapi-build-scala-tool.xml │ │ │ ├── default-compressionapi-build-sources.xml │ │ │ ├── default-compressionapi-build-test-internal.xml │ │ │ ├── default-compressionapi-build-test.xml │ │ │ ├── default-helloworld-build-compile-internal.xml │ │ │ ├── default-helloworld-build-compile.xml │ │ │ ├── default-helloworld-build-docs.xml │ │ │ ├── default-helloworld-build-optional.xml │ │ │ ├── default-helloworld-build-plugin.xml │ │ │ ├── default-helloworld-build-pom.xml │ │ │ ├── default-helloworld-build-provided.xml │ │ │ ├── default-helloworld-build-runtime-internal.xml │ │ │ ├── default-helloworld-build-runtime.xml │ │ │ ├── default-helloworld-build-scala-tool.xml │ │ │ ├── default-helloworld-build-sources.xml │ │ │ ├── default-helloworld-build-test-internal.xml │ │ │ ├── default-helloworld-build-test.xml │ │ │ ├── ivy-report.css │ │ │ └── ivy-report.xsl │ │ └── streams │ │ ├── $global │ │ ├── $global │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── dependencyPositions │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── update_cache_2.10 │ │ │ │ ├── input_dsp │ │ │ │ └── output_dsp │ │ ├── ivyConfiguration │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── ivySbt │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── projectDescriptors │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── streams │ │ │ ├── out │ │ │ └── update_cache_2.10 │ │ │ ├── inputs │ │ │ └── output │ │ ├── compile │ │ ├── $global │ │ │ └── $global │ │ │ │ └── discoveredMainClasses │ │ │ │ └── data │ │ ├── compile │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── compileIncremental │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── export │ │ │ │ └── out │ │ ├── copyResources │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── copy-resources │ │ │ │ └── out │ │ ├── dependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── runtime │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export ├── src │ ├── main │ │ └── scala-2.11 │ │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion.scala │ │ │ └── package.scala │ └── test │ │ └── scala-2.11 │ │ └── com │ │ └── packt │ │ ├── BeanSpec.scala │ │ ├── BinaryToDecimalSpec.scala │ │ ├── DecimalBinarySpec.scala │ │ ├── DecimalHexadecimalSpec.scala │ │ ├── HexadecimalToDecimalSpec.scala │ │ └── UnitSpec.scala └── target │ ├── .history │ ├── resolution-cache │ ├── default │ │ └── baseconversionapi_2.11 │ │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-baseconversionapi_2.11-compile-internal.xml │ │ ├── default-baseconversionapi_2.11-compile.xml │ │ ├── default-baseconversionapi_2.11-docs.xml │ │ ├── default-baseconversionapi_2.11-optional.xml │ │ ├── default-baseconversionapi_2.11-plugin.xml │ │ ├── default-baseconversionapi_2.11-pom.xml │ │ ├── default-baseconversionapi_2.11-provided.xml │ │ ├── default-baseconversionapi_2.11-runtime-internal.xml │ │ ├── default-baseconversionapi_2.11-runtime.xml │ │ ├── default-baseconversionapi_2.11-scala-tool.xml │ │ ├── default-baseconversionapi_2.11-sources.xml │ │ ├── default-baseconversionapi_2.11-test-internal.xml │ │ ├── default-baseconversionapi_2.11-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ ├── scala-2.11 │ ├── classes │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion$$anonfun$1.class │ │ │ ├── BaseConversion$$anonfun$2.class │ │ │ ├── BaseConversion$.class │ │ │ ├── BaseConversion.class │ │ │ ├── package$.class │ │ │ ├── package$Binary$.class │ │ │ ├── package$Binary.class │ │ │ ├── package$Decimal$.class │ │ │ ├── package$Decimal.class │ │ │ ├── package$Hexadecimal$.class │ │ │ ├── package$Hexadecimal.class │ │ │ ├── package$Number$$anonfun$1.class │ │ │ ├── package$Number$$anonfun$2.class │ │ │ ├── package$Number$class.class │ │ │ ├── package$Number.class │ │ │ └── package.class │ └── test-classes │ │ └── com │ │ └── packt │ │ ├── BeanSpec$$anonfun$1.class │ │ ├── BeanSpec$$anonfun$2$$anonfun$apply$mcV$sp$1.class │ │ ├── BeanSpec$$anonfun$2.class │ │ ├── BeanSpec$$anonfun$3$$anonfun$apply$mcV$sp$2.class │ │ ├── BeanSpec$$anonfun$3.class │ │ ├── BeanSpec.class │ │ ├── BinaryToDecimalSpec$$anonfun$1.class │ │ ├── BinaryToDecimalSpec$$anonfun$2.class │ │ ├── BinaryToDecimalSpec$$anonfun$3.class │ │ ├── BinaryToDecimalSpec.class │ │ ├── DecimalBinarySpec$$anonfun$1.class │ │ ├── DecimalBinarySpec$$anonfun$2.class │ │ ├── DecimalBinarySpec$$anonfun$3.class │ │ ├── DecimalBinarySpec.class │ │ ├── DecimalHexadecimalSpec$$anonfun$1.class │ │ ├── DecimalHexadecimalSpec$$anonfun$2.class │ │ ├── DecimalHexadecimalSpec.class │ │ ├── HexadecimalToDecimalSpec$$anonfun$1.class │ │ ├── HexadecimalToDecimalSpec$$anonfun$2.class │ │ ├── HexadecimalToDecimalSpec$$anonfun$3.class │ │ ├── HexadecimalToDecimalSpec.class │ │ └── UnitSpec.class │ └── streams │ ├── $global │ ├── clean │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.11 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.11 │ │ ├── inputs │ │ └── output │ ├── compile │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── runtime │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── test │ ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export │ └── unmanagedJars │ └── $global │ └── streams │ └── export ├── Chapter 4 └── BaseConversionAPI │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── libraries │ │ ├── SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml │ │ ├── SBT__org_scala_lang_scala_library_2_11_8_jar.xml │ │ ├── SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml │ │ └── SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── baseconversionapi-build.iml │ │ └── baseconversionapi.iml │ ├── sbt.xml │ ├── scala_compiler.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml │ ├── build.sbt │ ├── project │ ├── build.properties │ └── target │ │ ├── config-classes │ │ ├── $119ce6e8d26aa5b332a3$$anonfun$$sbtdef$1.class │ │ ├── $119ce6e8d26aa5b332a3$.class │ │ ├── $119ce6e8d26aa5b332a3.cache │ │ ├── $119ce6e8d26aa5b332a3.class │ │ ├── $4f55bf3139792637229f$$anonfun$$sbtdef$1.class │ │ ├── $4f55bf3139792637229f$.class │ │ ├── $4f55bf3139792637229f.cache │ │ ├── $4f55bf3139792637229f.class │ │ ├── $86e1d008f63af1cd65c1$$anonfun$$sbtdef$1.class │ │ ├── $86e1d008f63af1cd65c1$.class │ │ ├── $86e1d008f63af1cd65c1.cache │ │ ├── $86e1d008f63af1cd65c1.class │ │ ├── $91efe41af7bb98cca050$$anonfun$$sbtdef$1$$anonfun$apply$1.class │ │ ├── $91efe41af7bb98cca050$$anonfun$$sbtdef$1.class │ │ ├── $91efe41af7bb98cca050$.class │ │ ├── $91efe41af7bb98cca050.cache │ │ ├── $91efe41af7bb98cca050.class │ │ ├── $aa949242525cf8e2f977$$anonfun$$sbtdef$1.class │ │ ├── $aa949242525cf8e2f977$.class │ │ ├── $aa949242525cf8e2f977.cache │ │ ├── $aa949242525cf8e2f977.class │ │ ├── $b65d900443566b21706c$$anonfun$$sbtdef$1.class │ │ ├── $b65d900443566b21706c$.class │ │ ├── $b65d900443566b21706c.cache │ │ ├── $b65d900443566b21706c.class │ │ ├── $c326b7f5018689a01c49$$anonfun$$sbtdef$1.class │ │ ├── $c326b7f5018689a01c49$.class │ │ ├── $c326b7f5018689a01c49.cache │ │ └── $c326b7f5018689a01c49.class │ │ ├── resolution-cache │ │ ├── default │ │ │ ├── baseconversionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ ├── compressionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ └── helloworld-build │ │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── reports │ │ │ ├── default-baseconversionapi-build-compile-internal.xml │ │ │ ├── default-baseconversionapi-build-compile.xml │ │ │ ├── default-baseconversionapi-build-docs.xml │ │ │ ├── default-baseconversionapi-build-optional.xml │ │ │ ├── default-baseconversionapi-build-plugin.xml │ │ │ ├── default-baseconversionapi-build-pom.xml │ │ │ ├── default-baseconversionapi-build-provided.xml │ │ │ ├── default-baseconversionapi-build-runtime-internal.xml │ │ │ ├── default-baseconversionapi-build-runtime.xml │ │ │ ├── default-baseconversionapi-build-scala-tool.xml │ │ │ ├── default-baseconversionapi-build-sources.xml │ │ │ ├── default-baseconversionapi-build-test-internal.xml │ │ │ ├── default-baseconversionapi-build-test.xml │ │ │ ├── default-compressionapi-build-compile-internal.xml │ │ │ ├── default-compressionapi-build-compile.xml │ │ │ ├── default-compressionapi-build-docs.xml │ │ │ ├── default-compressionapi-build-optional.xml │ │ │ ├── default-compressionapi-build-plugin.xml │ │ │ ├── default-compressionapi-build-pom.xml │ │ │ ├── default-compressionapi-build-provided.xml │ │ │ ├── default-compressionapi-build-runtime-internal.xml │ │ │ ├── default-compressionapi-build-runtime.xml │ │ │ ├── default-compressionapi-build-scala-tool.xml │ │ │ ├── default-compressionapi-build-sources.xml │ │ │ ├── default-compressionapi-build-test-internal.xml │ │ │ ├── default-compressionapi-build-test.xml │ │ │ ├── default-helloworld-build-compile-internal.xml │ │ │ ├── default-helloworld-build-compile.xml │ │ │ ├── default-helloworld-build-docs.xml │ │ │ ├── default-helloworld-build-optional.xml │ │ │ ├── default-helloworld-build-plugin.xml │ │ │ ├── default-helloworld-build-pom.xml │ │ │ ├── default-helloworld-build-provided.xml │ │ │ ├── default-helloworld-build-runtime-internal.xml │ │ │ ├── default-helloworld-build-runtime.xml │ │ │ ├── default-helloworld-build-scala-tool.xml │ │ │ ├── default-helloworld-build-sources.xml │ │ │ ├── default-helloworld-build-test-internal.xml │ │ │ ├── default-helloworld-build-test.xml │ │ │ ├── ivy-report.css │ │ │ └── ivy-report.xsl │ │ └── streams │ │ ├── $global │ │ ├── $global │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── dependencyPositions │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── update_cache_2.10 │ │ │ │ ├── input_dsp │ │ │ │ └── output_dsp │ │ ├── ivyConfiguration │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── ivySbt │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── projectDescriptors │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── streams │ │ │ ├── out │ │ │ └── update_cache_2.10 │ │ │ ├── inputs │ │ │ └── output │ │ ├── compile │ │ ├── $global │ │ │ └── $global │ │ │ │ └── discoveredMainClasses │ │ │ │ └── data │ │ ├── compile │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── compileIncremental │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── export │ │ │ │ └── out │ │ ├── copyResources │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── copy-resources │ │ │ │ └── out │ │ ├── dependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── runtime │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── src │ ├── main │ │ └── scala-2.11 │ │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion.scala │ │ │ └── package.scala │ └── test │ │ └── scala-2.11 │ │ └── com │ │ └── packt │ │ ├── BeanSpec.scala │ │ ├── BinaryToDecimalSpec.scala │ │ ├── DecimalBinarySpec.scala │ │ ├── DecimalHexadecimalSpec.scala │ │ ├── HexadecimalToDecimalSpec.scala │ │ └── UnitSpec.scala │ └── target │ ├── .history │ ├── resolution-cache │ ├── default │ │ └── baseconversionapi_2.11 │ │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-baseconversionapi_2.11-compile-internal.xml │ │ ├── default-baseconversionapi_2.11-compile.xml │ │ ├── default-baseconversionapi_2.11-docs.xml │ │ ├── default-baseconversionapi_2.11-optional.xml │ │ ├── default-baseconversionapi_2.11-plugin.xml │ │ ├── default-baseconversionapi_2.11-pom.xml │ │ ├── default-baseconversionapi_2.11-provided.xml │ │ ├── default-baseconversionapi_2.11-runtime-internal.xml │ │ ├── default-baseconversionapi_2.11-runtime.xml │ │ ├── default-baseconversionapi_2.11-scala-tool.xml │ │ ├── default-baseconversionapi_2.11-sources.xml │ │ ├── default-baseconversionapi_2.11-test-internal.xml │ │ ├── default-baseconversionapi_2.11-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ ├── scala-2.11 │ ├── classes │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion$$anonfun$1.class │ │ │ ├── BaseConversion$$anonfun$2.class │ │ │ ├── BaseConversion$.class │ │ │ ├── BaseConversion.class │ │ │ ├── package$.class │ │ │ ├── package$Binary$.class │ │ │ ├── package$Binary.class │ │ │ ├── package$Decimal$.class │ │ │ ├── package$Decimal.class │ │ │ ├── package$Hexadecimal$.class │ │ │ ├── package$Hexadecimal.class │ │ │ ├── package$Number$$anonfun$1.class │ │ │ ├── package$Number$$anonfun$2.class │ │ │ ├── package$Number$class.class │ │ │ ├── package$Number.class │ │ │ └── package.class │ └── test-classes │ │ └── com │ │ └── packt │ │ ├── BeanSpec$$anonfun$1.class │ │ ├── BeanSpec$$anonfun$2$$anonfun$apply$mcV$sp$1.class │ │ ├── BeanSpec$$anonfun$2.class │ │ ├── BeanSpec$$anonfun$3$$anonfun$apply$mcV$sp$2.class │ │ ├── BeanSpec$$anonfun$3.class │ │ ├── BeanSpec.class │ │ ├── BinaryToDecimalSpec$$anonfun$1.class │ │ ├── BinaryToDecimalSpec$$anonfun$2.class │ │ ├── BinaryToDecimalSpec$$anonfun$3.class │ │ ├── BinaryToDecimalSpec.class │ │ ├── DecimalBinarySpec$$anonfun$1.class │ │ ├── DecimalBinarySpec$$anonfun$2.class │ │ ├── DecimalBinarySpec$$anonfun$3.class │ │ ├── DecimalBinarySpec.class │ │ ├── DecimalHexadecimalSpec$$anonfun$1.class │ │ ├── DecimalHexadecimalSpec$$anonfun$2.class │ │ ├── DecimalHexadecimalSpec.class │ │ ├── HexadecimalToDecimalSpec$$anonfun$1.class │ │ ├── HexadecimalToDecimalSpec$$anonfun$2.class │ │ ├── HexadecimalToDecimalSpec$$anonfun$3.class │ │ ├── HexadecimalToDecimalSpec.class │ │ └── UnitSpec.class │ └── streams │ ├── $global │ ├── clean │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.11 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.11 │ │ ├── inputs │ │ └── output │ ├── compile │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── runtime │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── test │ ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export │ └── unmanagedJars │ └── $global │ └── streams │ └── export ├── Chapter 5 └── BaseConversionAPI │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── libraries │ │ ├── SBT__info_cukes_cucumber_core_1_2_4_jar.xml │ │ ├── SBT__info_cukes_cucumber_html_0_2_3_jar.xml │ │ ├── SBT__info_cukes_cucumber_junit_1_2_4_jar.xml │ │ ├── SBT__info_cukes_cucumber_jvm_deps_1_0_5_jar.xml │ │ ├── SBT__info_cukes_cucumber_scala_2_11_1_2_4_jar.xml │ │ ├── SBT__info_cukes_gherkin_2_12_2_jar.xml │ │ ├── SBT__junit_junit_4_11_jar.xml │ │ ├── SBT__org_hamcrest_hamcrest_core_1_3_jar.xml │ │ ├── SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml │ │ ├── SBT__org_scala_lang_scala_library_2_11_8_jar.xml │ │ ├── SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml │ │ └── SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── baseconversionapi-build.iml │ │ └── baseconversionapi.iml │ ├── sbt.xml │ ├── scala_compiler.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml │ ├── build.sbt │ └── project │ ├── build.properties │ └── target │ ├── config-classes │ ├── $3c22172f4fdcd4a202f6$$anonfun$$sbtdef$1.class │ ├── $3c22172f4fdcd4a202f6$.class │ ├── $3c22172f4fdcd4a202f6.cache │ ├── $3c22172f4fdcd4a202f6.class │ ├── $48eaafc5ff600d8adbf8$$anonfun$$sbtdef$1.class │ ├── $48eaafc5ff600d8adbf8$.class │ ├── $48eaafc5ff600d8adbf8.cache │ ├── $48eaafc5ff600d8adbf8.class │ ├── $57171d9f4c7cbb18702e$$anonfun$$sbtdef$1.class │ ├── $57171d9f4c7cbb18702e$.class │ ├── $57171d9f4c7cbb18702e.cache │ ├── $57171d9f4c7cbb18702e.class │ ├── $8f72bac64a98346fb3a6$$anonfun$$sbtdef$1.class │ ├── $8f72bac64a98346fb3a6$.class │ ├── $8f72bac64a98346fb3a6.cache │ ├── $8f72bac64a98346fb3a6.class │ ├── $b4fa0fbc2fb7ba5ef026$$anonfun$$sbtdef$1$$anonfun$apply$1.class │ ├── $b4fa0fbc2fb7ba5ef026$$anonfun$$sbtdef$1.class │ ├── $b4fa0fbc2fb7ba5ef026$.class │ ├── $b4fa0fbc2fb7ba5ef026.cache │ ├── $b4fa0fbc2fb7ba5ef026.class │ ├── $bc741f16a1ec1554f826$$anonfun$$sbtdef$1.class │ ├── $bc741f16a1ec1554f826$.class │ ├── $bc741f16a1ec1554f826.cache │ ├── $bc741f16a1ec1554f826.class │ ├── $c674717ff585cc9df666$$anonfun$$sbtdef$1.class │ ├── $c674717ff585cc9df666$.class │ ├── $c674717ff585cc9df666.cache │ ├── $c674717ff585cc9df666.class │ ├── $dc6f4a997285bcdd2fc4$$anonfun$$sbtdef$1.class │ ├── $dc6f4a997285bcdd2fc4$.class │ ├── $dc6f4a997285bcdd2fc4.cache │ ├── $dc6f4a997285bcdd2fc4.class │ ├── $ec1033c86b78587c7005$$anonfun$$sbtdef$1.class │ ├── $ec1033c86b78587c7005$.class │ ├── $ec1033c86b78587c7005.cache │ ├── $ec1033c86b78587c7005.class │ ├── $fc75301935c00bb16463$$anonfun$$sbtdef$1.class │ ├── $fc75301935c00bb16463$.class │ ├── $fc75301935c00bb16463.cache │ └── $fc75301935c00bb16463.class │ ├── resolution-cache │ ├── default │ │ ├── baseconversionapi-build │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ ├── compressionapi-build │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── helloworld-build │ │ │ └── scala_2.10 │ │ │ └── sbt_0.13 │ │ │ └── 0.1-SNAPSHOT │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-baseconversionapi-build-compile-internal.xml │ │ ├── default-baseconversionapi-build-compile.xml │ │ ├── default-baseconversionapi-build-docs.xml │ │ ├── default-baseconversionapi-build-optional.xml │ │ ├── default-baseconversionapi-build-plugin.xml │ │ ├── default-baseconversionapi-build-pom.xml │ │ ├── default-baseconversionapi-build-provided.xml │ │ ├── default-baseconversionapi-build-runtime-internal.xml │ │ ├── default-baseconversionapi-build-runtime.xml │ │ ├── default-baseconversionapi-build-scala-tool.xml │ │ ├── default-baseconversionapi-build-sources.xml │ │ ├── default-baseconversionapi-build-test-internal.xml │ │ ├── default-baseconversionapi-build-test.xml │ │ ├── default-compressionapi-build-compile-internal.xml │ │ ├── default-compressionapi-build-compile.xml │ │ ├── default-compressionapi-build-docs.xml │ │ ├── default-compressionapi-build-optional.xml │ │ ├── default-compressionapi-build-plugin.xml │ │ ├── default-compressionapi-build-pom.xml │ │ ├── default-compressionapi-build-provided.xml │ │ ├── default-compressionapi-build-runtime-internal.xml │ │ ├── default-compressionapi-build-runtime.xml │ │ ├── default-compressionapi-build-scala-tool.xml │ │ ├── default-compressionapi-build-sources.xml │ │ ├── default-compressionapi-build-test-internal.xml │ │ ├── default-compressionapi-build-test.xml │ │ ├── default-helloworld-build-compile-internal.xml │ │ ├── default-helloworld-build-compile.xml │ │ ├── default-helloworld-build-docs.xml │ │ ├── default-helloworld-build-optional.xml │ │ ├── default-helloworld-build-plugin.xml │ │ ├── default-helloworld-build-pom.xml │ │ ├── default-helloworld-build-provided.xml │ │ ├── default-helloworld-build-runtime-internal.xml │ │ ├── default-helloworld-build-runtime.xml │ │ ├── default-helloworld-build-scala-tool.xml │ │ ├── default-helloworld-build-sources.xml │ │ ├── default-helloworld-build-test-internal.xml │ │ ├── default-helloworld-build-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ └── streams │ ├── $global │ ├── $global │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.10 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.10 │ │ ├── inputs │ │ └── output │ └── compile │ ├── $global │ └── $global │ │ └── discoveredMainClasses │ │ └── data │ ├── compile │ └── $global │ │ └── streams │ │ └── out │ ├── compileIncremental │ └── $global │ │ └── streams │ │ ├── export │ │ └── out │ ├── copyResources │ └── $global │ │ └── streams │ │ ├── copy-resources │ │ └── out │ ├── dependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── exportedProducts │ └── $global │ │ └── streams │ │ └── export │ └── externalDependencyClasspath │ └── $global │ └── streams │ └── export ├── Chapter 6 ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── libraries │ │ ├── SBT__info_cukes_cucumber_core_1_2_4_jar.xml │ │ ├── SBT__info_cukes_cucumber_html_0_2_3_jar.xml │ │ ├── SBT__info_cukes_cucumber_junit_1_2_4_jar.xml │ │ ├── SBT__info_cukes_cucumber_jvm_deps_1_0_5_jar.xml │ │ ├── SBT__info_cukes_cucumber_scala_2_11_1_2_4_jar.xml │ │ ├── SBT__info_cukes_gherkin_2_12_2_jar.xml │ │ ├── SBT__junit_junit_4_11_jar.xml │ │ ├── SBT__org_hamcrest_hamcrest_core_1_3_jar.xml │ │ ├── SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml │ │ ├── SBT__org_scala_lang_scala_library_2_11_8_jar.xml │ │ ├── SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml │ │ └── SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── baseconversionapi-build.iml │ │ └── baseconversionapi.iml │ ├── sbt.xml │ ├── scala_compiler.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml ├── build.sbt ├── project │ ├── build.properties │ └── target │ │ ├── config-classes │ │ ├── $3c22172f4fdcd4a202f6$$anonfun$$sbtdef$1.class │ │ ├── $3c22172f4fdcd4a202f6$.class │ │ ├── $3c22172f4fdcd4a202f6.cache │ │ ├── $3c22172f4fdcd4a202f6.class │ │ ├── $48eaafc5ff600d8adbf8$$anonfun$$sbtdef$1.class │ │ ├── $48eaafc5ff600d8adbf8$.class │ │ ├── $48eaafc5ff600d8adbf8.cache │ │ ├── $48eaafc5ff600d8adbf8.class │ │ ├── $57171d9f4c7cbb18702e$$anonfun$$sbtdef$1.class │ │ ├── $57171d9f4c7cbb18702e$.class │ │ ├── $57171d9f4c7cbb18702e.cache │ │ ├── $57171d9f4c7cbb18702e.class │ │ ├── $8f72bac64a98346fb3a6$$anonfun$$sbtdef$1.class │ │ ├── $8f72bac64a98346fb3a6$.class │ │ ├── $8f72bac64a98346fb3a6.cache │ │ ├── $8f72bac64a98346fb3a6.class │ │ ├── $b4fa0fbc2fb7ba5ef026$$anonfun$$sbtdef$1$$anonfun$apply$1.class │ │ ├── $b4fa0fbc2fb7ba5ef026$$anonfun$$sbtdef$1.class │ │ ├── $b4fa0fbc2fb7ba5ef026$.class │ │ ├── $b4fa0fbc2fb7ba5ef026.cache │ │ ├── $b4fa0fbc2fb7ba5ef026.class │ │ ├── $bc741f16a1ec1554f826$$anonfun$$sbtdef$1.class │ │ ├── $bc741f16a1ec1554f826$.class │ │ ├── $bc741f16a1ec1554f826.cache │ │ ├── $bc741f16a1ec1554f826.class │ │ ├── $c674717ff585cc9df666$$anonfun$$sbtdef$1.class │ │ ├── $c674717ff585cc9df666$.class │ │ ├── $c674717ff585cc9df666.cache │ │ ├── $c674717ff585cc9df666.class │ │ ├── $dc6f4a997285bcdd2fc4$$anonfun$$sbtdef$1.class │ │ ├── $dc6f4a997285bcdd2fc4$.class │ │ ├── $dc6f4a997285bcdd2fc4.cache │ │ ├── $dc6f4a997285bcdd2fc4.class │ │ ├── $ec1033c86b78587c7005$$anonfun$$sbtdef$1.class │ │ ├── $ec1033c86b78587c7005$.class │ │ ├── $ec1033c86b78587c7005.cache │ │ ├── $ec1033c86b78587c7005.class │ │ ├── $fc75301935c00bb16463$$anonfun$$sbtdef$1.class │ │ ├── $fc75301935c00bb16463$.class │ │ ├── $fc75301935c00bb16463.cache │ │ └── $fc75301935c00bb16463.class │ │ ├── resolution-cache │ │ ├── default │ │ │ ├── baseconversionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ ├── compressionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ └── helloworld-build │ │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── reports │ │ │ ├── default-baseconversionapi-build-compile-internal.xml │ │ │ ├── default-baseconversionapi-build-compile.xml │ │ │ ├── default-baseconversionapi-build-docs.xml │ │ │ ├── default-baseconversionapi-build-optional.xml │ │ │ ├── default-baseconversionapi-build-plugin.xml │ │ │ ├── default-baseconversionapi-build-pom.xml │ │ │ ├── default-baseconversionapi-build-provided.xml │ │ │ ├── default-baseconversionapi-build-runtime-internal.xml │ │ │ ├── default-baseconversionapi-build-runtime.xml │ │ │ ├── default-baseconversionapi-build-scala-tool.xml │ │ │ ├── default-baseconversionapi-build-sources.xml │ │ │ ├── default-baseconversionapi-build-test-internal.xml │ │ │ ├── default-baseconversionapi-build-test.xml │ │ │ ├── default-compressionapi-build-compile-internal.xml │ │ │ ├── default-compressionapi-build-compile.xml │ │ │ ├── default-compressionapi-build-docs.xml │ │ │ ├── default-compressionapi-build-optional.xml │ │ │ ├── default-compressionapi-build-plugin.xml │ │ │ ├── default-compressionapi-build-pom.xml │ │ │ ├── default-compressionapi-build-provided.xml │ │ │ ├── default-compressionapi-build-runtime-internal.xml │ │ │ ├── default-compressionapi-build-runtime.xml │ │ │ ├── default-compressionapi-build-scala-tool.xml │ │ │ ├── default-compressionapi-build-sources.xml │ │ │ ├── default-compressionapi-build-test-internal.xml │ │ │ ├── default-compressionapi-build-test.xml │ │ │ ├── default-helloworld-build-compile-internal.xml │ │ │ ├── default-helloworld-build-compile.xml │ │ │ ├── default-helloworld-build-docs.xml │ │ │ ├── default-helloworld-build-optional.xml │ │ │ ├── default-helloworld-build-plugin.xml │ │ │ ├── default-helloworld-build-pom.xml │ │ │ ├── default-helloworld-build-provided.xml │ │ │ ├── default-helloworld-build-runtime-internal.xml │ │ │ ├── default-helloworld-build-runtime.xml │ │ │ ├── default-helloworld-build-scala-tool.xml │ │ │ ├── default-helloworld-build-sources.xml │ │ │ ├── default-helloworld-build-test-internal.xml │ │ │ ├── default-helloworld-build-test.xml │ │ │ ├── ivy-report.css │ │ │ └── ivy-report.xsl │ │ └── streams │ │ ├── $global │ │ ├── $global │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── dependencyPositions │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── update_cache_2.10 │ │ │ │ ├── input_dsp │ │ │ │ └── output_dsp │ │ ├── ivyConfiguration │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── ivySbt │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── projectDescriptors │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── streams │ │ │ ├── out │ │ │ └── update_cache_2.10 │ │ │ ├── inputs │ │ │ └── output │ │ ├── compile │ │ ├── $global │ │ │ └── $global │ │ │ │ └── discoveredMainClasses │ │ │ │ └── data │ │ ├── compile │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── compileIncremental │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── export │ │ │ │ └── out │ │ ├── copyResources │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── copy-resources │ │ │ │ └── out │ │ ├── dependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── runtime │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export ├── src │ ├── main │ │ └── scala-2.11 │ │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion.scala │ │ │ └── package.scala │ └── test │ │ ├── features │ │ └── binary.feature │ │ └── scala-2.11 │ │ ├── com │ │ └── packt │ │ │ ├── BeanSpec.scala │ │ │ ├── BinaryToDecimalSpec.scala │ │ │ ├── DecimalBinarySpec.scala │ │ │ ├── DecimalHexadecimalSpec.scala │ │ │ ├── HexadecimalToDecimalSpec.scala │ │ │ └── UnitSpec.scala │ │ └── support │ │ └── steps │ │ ├── BaseConversionSteps.scala │ │ └── BaseSteps.scala └── target │ ├── .history │ ├── resolution-cache │ ├── default │ │ └── baseconversionapi_2.11 │ │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-baseconversionapi_2.11-compile-internal.xml │ │ ├── default-baseconversionapi_2.11-compile.xml │ │ ├── default-baseconversionapi_2.11-docs.xml │ │ ├── default-baseconversionapi_2.11-optional.xml │ │ ├── default-baseconversionapi_2.11-plugin.xml │ │ ├── default-baseconversionapi_2.11-pom.xml │ │ ├── default-baseconversionapi_2.11-provided.xml │ │ ├── default-baseconversionapi_2.11-runtime-internal.xml │ │ ├── default-baseconversionapi_2.11-runtime.xml │ │ ├── default-baseconversionapi_2.11-scala-tool.xml │ │ ├── default-baseconversionapi_2.11-sources.xml │ │ ├── default-baseconversionapi_2.11-test-internal.xml │ │ ├── default-baseconversionapi_2.11-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ ├── scala-2.11 │ ├── classes │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion$$anonfun$1.class │ │ │ ├── BaseConversion$$anonfun$2.class │ │ │ ├── BaseConversion$.class │ │ │ ├── BaseConversion.class │ │ │ ├── package$.class │ │ │ ├── package$Binary$.class │ │ │ ├── package$Binary.class │ │ │ ├── package$Decimal$.class │ │ │ ├── package$Decimal.class │ │ │ ├── package$Hexadecimal$.class │ │ │ ├── package$Hexadecimal.class │ │ │ ├── package$Number$$anonfun$1.class │ │ │ ├── package$Number$$anonfun$2.class │ │ │ ├── package$Number$class.class │ │ │ ├── package$Number.class │ │ │ └── package.class │ └── test-classes │ │ ├── com │ │ └── packt │ │ │ ├── BeanSpec$$anonfun$1.class │ │ │ ├── BeanSpec$$anonfun$2$$anonfun$apply$mcV$sp$1.class │ │ │ ├── BeanSpec$$anonfun$2.class │ │ │ ├── BeanSpec$$anonfun$3$$anonfun$apply$mcV$sp$2.class │ │ │ ├── BeanSpec$$anonfun$3.class │ │ │ ├── BeanSpec.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$1.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$2.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$3.class │ │ │ ├── BinaryToDecimalSpec.class │ │ │ ├── DecimalBinarySpec$$anonfun$1.class │ │ │ ├── DecimalBinarySpec$$anonfun$2.class │ │ │ ├── DecimalBinarySpec$$anonfun$3.class │ │ │ ├── DecimalBinarySpec.class │ │ │ ├── DecimalHexadecimalSpec$$anonfun$1.class │ │ │ ├── DecimalHexadecimalSpec$$anonfun$2.class │ │ │ ├── DecimalHexadecimalSpec.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$1.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$2.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$3.class │ │ │ ├── HexadecimalToDecimalSpec.class │ │ │ └── UnitSpec.class │ │ └── support │ │ └── steps │ │ ├── BaseConversionSteps$$anonfun$1.class │ │ ├── BaseConversionSteps$$anonfun$2.class │ │ ├── BaseConversionSteps$$anonfun$3.class │ │ ├── BaseConversionSteps.class │ │ └── BaseSteps.class │ └── streams │ ├── $global │ ├── clean │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.11 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.11 │ │ ├── inputs │ │ └── output │ ├── compile │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── runtime │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── test │ ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export │ └── unmanagedJars │ └── $global │ └── streams │ └── export ├── Chapter 7 └── BaseConversionAPI │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── excludeFromValidation.xml │ ├── libraries │ │ ├── SBT__info_cukes_cucumber_core_1_2_4_jar.xml │ │ ├── SBT__info_cukes_cucumber_html_0_2_3_jar.xml │ │ ├── SBT__info_cukes_cucumber_junit_1_2_4_jar.xml │ │ ├── SBT__info_cukes_cucumber_jvm_deps_1_0_5_jar.xml │ │ ├── SBT__info_cukes_cucumber_scala_2_11_1_2_4_jar.xml │ │ ├── SBT__info_cukes_gherkin_2_12_2_jar.xml │ │ ├── SBT__junit_junit_4_11_jar.xml │ │ ├── SBT__org_hamcrest_hamcrest_core_1_3_jar.xml │ │ ├── SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml │ │ ├── SBT__org_scala_lang_scala_library_2_11_8_jar.xml │ │ ├── SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml │ │ ├── SBT__org_scala_sbt_test_interface_1_0_jar.xml │ │ ├── SBT__org_scalacheck_scalacheck_2_11_1_12_5_jar.xml │ │ └── SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── baseconversionapi-build.iml │ │ └── baseconversionapi.iml │ ├── sbt.xml │ ├── scala_compiler.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml │ ├── build.sbt │ ├── project │ ├── build.properties │ └── target │ │ ├── config-classes │ │ ├── $07bf7c52e99dabf46579$$anonfun$$sbtdef$1.class │ │ ├── $07bf7c52e99dabf46579$.class │ │ ├── $07bf7c52e99dabf46579.cache │ │ ├── $07bf7c52e99dabf46579.class │ │ ├── $2ca9a48f9d007c33c2a4$$anonfun$$sbtdef$1.class │ │ ├── $2ca9a48f9d007c33c2a4$.class │ │ ├── $2ca9a48f9d007c33c2a4.cache │ │ ├── $2ca9a48f9d007c33c2a4.class │ │ ├── $44169b4bf4114b16e003$$anonfun$$sbtdef$1.class │ │ ├── $44169b4bf4114b16e003$.class │ │ ├── $44169b4bf4114b16e003.cache │ │ ├── $44169b4bf4114b16e003.class │ │ ├── $55087a73b7c7c0c7b822$$anonfun$$sbtdef$1.class │ │ ├── $55087a73b7c7c0c7b822$.class │ │ ├── $55087a73b7c7c0c7b822.cache │ │ ├── $55087a73b7c7c0c7b822.class │ │ ├── $a2a2e6a7334d7f203fa9$$anonfun$$sbtdef$1.class │ │ ├── $a2a2e6a7334d7f203fa9$.class │ │ ├── $a2a2e6a7334d7f203fa9.cache │ │ ├── $a2a2e6a7334d7f203fa9.class │ │ ├── $c5501965a0d3cacf6026$$anonfun$$sbtdef$1.class │ │ ├── $c5501965a0d3cacf6026$.class │ │ ├── $c5501965a0d3cacf6026.cache │ │ ├── $c5501965a0d3cacf6026.class │ │ ├── $d61df1966dcf36b8c24f$$anonfun$$sbtdef$1$$anonfun$apply$1.class │ │ ├── $d61df1966dcf36b8c24f$$anonfun$$sbtdef$1.class │ │ ├── $d61df1966dcf36b8c24f$.class │ │ ├── $d61df1966dcf36b8c24f.cache │ │ ├── $d61df1966dcf36b8c24f.class │ │ ├── $e0ed8a25ab944e254641$$anonfun$$sbtdef$1.class │ │ ├── $e0ed8a25ab944e254641$.class │ │ ├── $e0ed8a25ab944e254641.cache │ │ ├── $e0ed8a25ab944e254641.class │ │ ├── $e6660e701d8a23555637$$anonfun$$sbtdef$1.class │ │ ├── $e6660e701d8a23555637$.class │ │ ├── $e6660e701d8a23555637.cache │ │ ├── $e6660e701d8a23555637.class │ │ ├── $e8001386c030aababfbc$$anonfun$$sbtdef$1.class │ │ ├── $e8001386c030aababfbc$.class │ │ ├── $e8001386c030aababfbc.cache │ │ ├── $e8001386c030aababfbc.class │ │ ├── $ecafc9f5bee8b510443e$$anonfun$$sbtdef$1.class │ │ ├── $ecafc9f5bee8b510443e$.class │ │ ├── $ecafc9f5bee8b510443e.cache │ │ └── $ecafc9f5bee8b510443e.class │ │ ├── resolution-cache │ │ ├── default │ │ │ ├── baseconversionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ ├── compressionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ └── helloworld-build │ │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── reports │ │ │ ├── default-baseconversionapi-build-compile-internal.xml │ │ │ ├── default-baseconversionapi-build-compile.xml │ │ │ ├── default-baseconversionapi-build-docs.xml │ │ │ ├── default-baseconversionapi-build-optional.xml │ │ │ ├── default-baseconversionapi-build-plugin.xml │ │ │ ├── default-baseconversionapi-build-pom.xml │ │ │ ├── default-baseconversionapi-build-provided.xml │ │ │ ├── default-baseconversionapi-build-runtime-internal.xml │ │ │ ├── default-baseconversionapi-build-runtime.xml │ │ │ ├── default-baseconversionapi-build-scala-tool.xml │ │ │ ├── default-baseconversionapi-build-sources.xml │ │ │ ├── default-baseconversionapi-build-test-internal.xml │ │ │ ├── default-baseconversionapi-build-test.xml │ │ │ ├── default-compressionapi-build-compile-internal.xml │ │ │ ├── default-compressionapi-build-compile.xml │ │ │ ├── default-compressionapi-build-docs.xml │ │ │ ├── default-compressionapi-build-optional.xml │ │ │ ├── default-compressionapi-build-plugin.xml │ │ │ ├── default-compressionapi-build-pom.xml │ │ │ ├── default-compressionapi-build-provided.xml │ │ │ ├── default-compressionapi-build-runtime-internal.xml │ │ │ ├── default-compressionapi-build-runtime.xml │ │ │ ├── default-compressionapi-build-scala-tool.xml │ │ │ ├── default-compressionapi-build-sources.xml │ │ │ ├── default-compressionapi-build-test-internal.xml │ │ │ ├── default-compressionapi-build-test.xml │ │ │ ├── default-helloworld-build-compile-internal.xml │ │ │ ├── default-helloworld-build-compile.xml │ │ │ ├── default-helloworld-build-docs.xml │ │ │ ├── default-helloworld-build-optional.xml │ │ │ ├── default-helloworld-build-plugin.xml │ │ │ ├── default-helloworld-build-pom.xml │ │ │ ├── default-helloworld-build-provided.xml │ │ │ ├── default-helloworld-build-runtime-internal.xml │ │ │ ├── default-helloworld-build-runtime.xml │ │ │ ├── default-helloworld-build-scala-tool.xml │ │ │ ├── default-helloworld-build-sources.xml │ │ │ ├── default-helloworld-build-test-internal.xml │ │ │ ├── default-helloworld-build-test.xml │ │ │ ├── ivy-report.css │ │ │ └── ivy-report.xsl │ │ └── streams │ │ ├── $global │ │ ├── $global │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── dependencyPositions │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── update_cache_2.10 │ │ │ │ ├── input_dsp │ │ │ │ └── output_dsp │ │ ├── ivyConfiguration │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── ivySbt │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── projectDescriptors │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── streams │ │ │ ├── out │ │ │ └── update_cache_2.10 │ │ │ ├── inputs │ │ │ └── output │ │ ├── compile │ │ ├── $global │ │ │ └── $global │ │ │ │ └── discoveredMainClasses │ │ │ │ └── data │ │ ├── compile │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── compileIncremental │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── export │ │ │ │ └── out │ │ ├── copyResources │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── copy-resources │ │ │ │ └── out │ │ ├── dependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── runtime │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── src │ ├── main │ │ └── scala-2.11 │ │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion.scala │ │ │ └── package.scala │ └── test │ │ ├── features │ │ └── binary.feature │ │ └── scala-2.11 │ │ ├── com │ │ └── packt │ │ │ ├── BeanSpec.scala │ │ │ ├── BinaryToDecimalGenSpec.scala │ │ │ ├── BinaryToDecimalSpec.scala │ │ │ ├── DecimalBinarySpec.scala │ │ │ ├── DecimalHexadecimalSpec.scala │ │ │ ├── DecimalToHexadecimalGenSpec.scala │ │ │ ├── HexadecimalToDecimalSpec.scala │ │ │ └── UnitSpec.scala │ │ └── support │ │ └── steps │ │ ├── BaseConversionSteps.scala │ │ └── BaseSteps.scala │ └── target │ ├── .history │ ├── resolution-cache │ ├── default │ │ └── baseconversionapi_2.11 │ │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-baseconversionapi_2.11-compile-internal.xml │ │ ├── default-baseconversionapi_2.11-compile.xml │ │ ├── default-baseconversionapi_2.11-docs.xml │ │ ├── default-baseconversionapi_2.11-optional.xml │ │ ├── default-baseconversionapi_2.11-plugin.xml │ │ ├── default-baseconversionapi_2.11-pom.xml │ │ ├── default-baseconversionapi_2.11-provided.xml │ │ ├── default-baseconversionapi_2.11-runtime-internal.xml │ │ ├── default-baseconversionapi_2.11-runtime.xml │ │ ├── default-baseconversionapi_2.11-scala-tool.xml │ │ ├── default-baseconversionapi_2.11-sources.xml │ │ ├── default-baseconversionapi_2.11-test-internal.xml │ │ ├── default-baseconversionapi_2.11-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ ├── scala-2.11 │ ├── classes │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion$$anonfun$1.class │ │ │ ├── BaseConversion$$anonfun$2.class │ │ │ ├── BaseConversion$.class │ │ │ ├── BaseConversion.class │ │ │ ├── package$.class │ │ │ ├── package$Binary$.class │ │ │ ├── package$Binary.class │ │ │ ├── package$Decimal$.class │ │ │ ├── package$Decimal.class │ │ │ ├── package$Hexadecimal$.class │ │ │ ├── package$Hexadecimal.class │ │ │ ├── package$Number$$anonfun$1.class │ │ │ ├── package$Number$$anonfun$2.class │ │ │ ├── package$Number$class.class │ │ │ ├── package$Number.class │ │ │ └── package.class │ └── test-classes │ │ ├── com │ │ └── packt │ │ │ ├── BeanSpec$$anonfun$1.class │ │ │ ├── BeanSpec$$anonfun$2$$anonfun$apply$mcV$sp$1.class │ │ │ ├── BeanSpec$$anonfun$2.class │ │ │ ├── BeanSpec$$anonfun$3$$anonfun$apply$mcV$sp$2.class │ │ │ ├── BeanSpec$$anonfun$3.class │ │ │ ├── BeanSpec.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$1.class │ │ │ ├── BinaryToDecimalSpec.class │ │ │ ├── DecimalBinarySpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalBinarySpec$$anonfun$1.class │ │ │ ├── DecimalBinarySpec.class │ │ │ ├── DecimalHexadecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalHexadecimalSpec$$anonfun$1.class │ │ │ ├── DecimalHexadecimalSpec.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$2.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$3.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1.class │ │ │ ├── DecimalToBinaryGenSpec.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$2.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$3.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1.class │ │ │ ├── DecimalToHexadecimalGenSpec.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$1.class │ │ │ ├── HexadecimalToDecimalSpec.class │ │ │ └── UnitSpec.class │ │ └── support │ │ └── steps │ │ ├── BaseConversionSteps$$anonfun$1.class │ │ ├── BaseConversionSteps$$anonfun$2.class │ │ ├── BaseConversionSteps$$anonfun$3.class │ │ ├── BaseConversionSteps.class │ │ └── BaseSteps.class │ └── streams │ ├── $global │ ├── clean │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.11 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.11 │ │ ├── inputs │ │ └── output │ ├── compile │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── runtime │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── test │ ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export │ └── unmanagedJars │ └── $global │ └── streams │ └── export ├── Chapter 8 ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── excludeFromValidation.xml │ ├── libraries │ │ ├── SBT__info_cukes_cucumber_core_1_2_4_jar.xml │ │ ├── SBT__info_cukes_cucumber_html_0_2_3_jar.xml │ │ ├── SBT__info_cukes_cucumber_junit_1_2_4_jar.xml │ │ ├── SBT__info_cukes_cucumber_jvm_deps_1_0_5_jar.xml │ │ ├── SBT__info_cukes_cucumber_scala_2_11_1_2_4_jar.xml │ │ ├── SBT__info_cukes_gherkin_2_12_2_jar.xml │ │ ├── SBT__junit_junit_4_11_jar.xml │ │ ├── SBT__org_hamcrest_hamcrest_core_1_3_jar.xml │ │ ├── SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml │ │ ├── SBT__org_scala_lang_scala_library_2_11_8_jar.xml │ │ ├── SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml │ │ ├── SBT__org_scala_sbt_test_interface_1_0_jar.xml │ │ ├── SBT__org_scalacheck_scalacheck_2_11_1_12_5_jar.xml │ │ └── SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml │ ├── misc.xml │ ├── modules.xml │ ├── modules │ │ ├── baseconversionapi-build.iml │ │ └── baseconversionapi.iml │ ├── sbt.xml │ ├── scala_compiler.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml ├── build.sbt ├── project │ ├── build.properties │ └── target │ │ ├── config-classes │ │ ├── $07bf7c52e99dabf46579$$anonfun$$sbtdef$1.class │ │ ├── $07bf7c52e99dabf46579$.class │ │ ├── $07bf7c52e99dabf46579.cache │ │ ├── $07bf7c52e99dabf46579.class │ │ ├── $2ca9a48f9d007c33c2a4$$anonfun$$sbtdef$1.class │ │ ├── $2ca9a48f9d007c33c2a4$.class │ │ ├── $2ca9a48f9d007c33c2a4.cache │ │ ├── $2ca9a48f9d007c33c2a4.class │ │ ├── $44169b4bf4114b16e003$$anonfun$$sbtdef$1.class │ │ ├── $44169b4bf4114b16e003$.class │ │ ├── $44169b4bf4114b16e003.cache │ │ ├── $44169b4bf4114b16e003.class │ │ ├── $55087a73b7c7c0c7b822$$anonfun$$sbtdef$1.class │ │ ├── $55087a73b7c7c0c7b822$.class │ │ ├── $55087a73b7c7c0c7b822.cache │ │ ├── $55087a73b7c7c0c7b822.class │ │ ├── $a2a2e6a7334d7f203fa9$$anonfun$$sbtdef$1.class │ │ ├── $a2a2e6a7334d7f203fa9$.class │ │ ├── $a2a2e6a7334d7f203fa9.cache │ │ ├── $a2a2e6a7334d7f203fa9.class │ │ ├── $c5501965a0d3cacf6026$$anonfun$$sbtdef$1.class │ │ ├── $c5501965a0d3cacf6026$.class │ │ ├── $c5501965a0d3cacf6026.cache │ │ ├── $c5501965a0d3cacf6026.class │ │ ├── $d61df1966dcf36b8c24f$$anonfun$$sbtdef$1$$anonfun$apply$1.class │ │ ├── $d61df1966dcf36b8c24f$$anonfun$$sbtdef$1.class │ │ ├── $d61df1966dcf36b8c24f$.class │ │ ├── $d61df1966dcf36b8c24f.cache │ │ ├── $d61df1966dcf36b8c24f.class │ │ ├── $e0ed8a25ab944e254641$$anonfun$$sbtdef$1.class │ │ ├── $e0ed8a25ab944e254641$.class │ │ ├── $e0ed8a25ab944e254641.cache │ │ ├── $e0ed8a25ab944e254641.class │ │ ├── $e6660e701d8a23555637$$anonfun$$sbtdef$1.class │ │ ├── $e6660e701d8a23555637$.class │ │ ├── $e6660e701d8a23555637.cache │ │ ├── $e6660e701d8a23555637.class │ │ ├── $e8001386c030aababfbc$$anonfun$$sbtdef$1.class │ │ ├── $e8001386c030aababfbc$.class │ │ ├── $e8001386c030aababfbc.cache │ │ ├── $e8001386c030aababfbc.class │ │ ├── $ecafc9f5bee8b510443e$$anonfun$$sbtdef$1.class │ │ ├── $ecafc9f5bee8b510443e$.class │ │ ├── $ecafc9f5bee8b510443e.cache │ │ └── $ecafc9f5bee8b510443e.class │ │ ├── resolution-cache │ │ ├── default │ │ │ ├── baseconversionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ ├── compressionapi-build │ │ │ │ └── scala_2.10 │ │ │ │ │ └── sbt_0.13 │ │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ │ ├── resolved.xml.properties │ │ │ │ │ └── resolved.xml.xml │ │ │ └── helloworld-build │ │ │ │ └── scala_2.10 │ │ │ │ └── sbt_0.13 │ │ │ │ └── 0.1-SNAPSHOT │ │ │ │ ├── resolved.xml.properties │ │ │ │ └── resolved.xml.xml │ │ └── reports │ │ │ ├── default-baseconversionapi-build-compile-internal.xml │ │ │ ├── default-baseconversionapi-build-compile.xml │ │ │ ├── default-baseconversionapi-build-docs.xml │ │ │ ├── default-baseconversionapi-build-optional.xml │ │ │ ├── default-baseconversionapi-build-plugin.xml │ │ │ ├── default-baseconversionapi-build-pom.xml │ │ │ ├── default-baseconversionapi-build-provided.xml │ │ │ ├── default-baseconversionapi-build-runtime-internal.xml │ │ │ ├── default-baseconversionapi-build-runtime.xml │ │ │ ├── default-baseconversionapi-build-scala-tool.xml │ │ │ ├── default-baseconversionapi-build-sources.xml │ │ │ ├── default-baseconversionapi-build-test-internal.xml │ │ │ ├── default-baseconversionapi-build-test.xml │ │ │ ├── default-compressionapi-build-compile-internal.xml │ │ │ ├── default-compressionapi-build-compile.xml │ │ │ ├── default-compressionapi-build-docs.xml │ │ │ ├── default-compressionapi-build-optional.xml │ │ │ ├── default-compressionapi-build-plugin.xml │ │ │ ├── default-compressionapi-build-pom.xml │ │ │ ├── default-compressionapi-build-provided.xml │ │ │ ├── default-compressionapi-build-runtime-internal.xml │ │ │ ├── default-compressionapi-build-runtime.xml │ │ │ ├── default-compressionapi-build-scala-tool.xml │ │ │ ├── default-compressionapi-build-sources.xml │ │ │ ├── default-compressionapi-build-test-internal.xml │ │ │ ├── default-compressionapi-build-test.xml │ │ │ ├── default-helloworld-build-compile-internal.xml │ │ │ ├── default-helloworld-build-compile.xml │ │ │ ├── default-helloworld-build-docs.xml │ │ │ ├── default-helloworld-build-optional.xml │ │ │ ├── default-helloworld-build-plugin.xml │ │ │ ├── default-helloworld-build-pom.xml │ │ │ ├── default-helloworld-build-provided.xml │ │ │ ├── default-helloworld-build-runtime-internal.xml │ │ │ ├── default-helloworld-build-runtime.xml │ │ │ ├── default-helloworld-build-scala-tool.xml │ │ │ ├── default-helloworld-build-sources.xml │ │ │ ├── default-helloworld-build-test-internal.xml │ │ │ ├── default-helloworld-build-test.xml │ │ │ ├── ivy-report.css │ │ │ └── ivy-report.xsl │ │ └── streams │ │ ├── $global │ │ ├── $global │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── dependencyPositions │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── update_cache_2.10 │ │ │ │ ├── input_dsp │ │ │ │ └── output_dsp │ │ ├── ivyConfiguration │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── ivySbt │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── projectDescriptors │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ └── update │ │ │ └── $global │ │ │ └── streams │ │ │ ├── out │ │ │ └── update_cache_2.10 │ │ │ ├── inputs │ │ │ └── output │ │ ├── compile │ │ ├── $global │ │ │ └── $global │ │ │ │ └── discoveredMainClasses │ │ │ │ └── data │ │ ├── compile │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── out │ │ ├── compileIncremental │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── export │ │ │ │ └── out │ │ ├── copyResources │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ ├── copy-resources │ │ │ │ └── out │ │ ├── dependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── exportedProducts │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── managedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ ├── unmanagedClasspath │ │ │ └── $global │ │ │ │ └── streams │ │ │ │ └── export │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── runtime │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export ├── src │ ├── main │ │ └── scala-2.11 │ │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion.scala │ │ │ └── package.scala │ └── test │ │ ├── features │ │ └── binary.feature │ │ └── scala-2.11 │ │ ├── com │ │ └── packt │ │ │ ├── BeanSpec.scala │ │ │ ├── BinaryToDecimalGenSpec.scala │ │ │ ├── BinaryToDecimalSpec.scala │ │ │ ├── DecimalBinarySpec.scala │ │ │ ├── DecimalHexadecimalSpec.scala │ │ │ ├── DecimalToHexadecimalGenSpec.scala │ │ │ ├── HexadecimalToDecimalSpec.scala │ │ │ └── UnitSpec.scala │ │ └── support │ │ └── steps │ │ ├── BaseConversionSteps.scala │ │ └── BaseSteps.scala └── target │ ├── .history │ ├── resolution-cache │ ├── default │ │ └── baseconversionapi_2.11 │ │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-baseconversionapi_2.11-compile-internal.xml │ │ ├── default-baseconversionapi_2.11-compile.xml │ │ ├── default-baseconversionapi_2.11-docs.xml │ │ ├── default-baseconversionapi_2.11-optional.xml │ │ ├── default-baseconversionapi_2.11-plugin.xml │ │ ├── default-baseconversionapi_2.11-pom.xml │ │ ├── default-baseconversionapi_2.11-provided.xml │ │ ├── default-baseconversionapi_2.11-runtime-internal.xml │ │ ├── default-baseconversionapi_2.11-runtime.xml │ │ ├── default-baseconversionapi_2.11-scala-tool.xml │ │ ├── default-baseconversionapi_2.11-sources.xml │ │ ├── default-baseconversionapi_2.11-test-internal.xml │ │ ├── default-baseconversionapi_2.11-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ ├── scala-2.11 │ ├── classes │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion$$anonfun$1.class │ │ │ ├── BaseConversion$$anonfun$2.class │ │ │ ├── BaseConversion$.class │ │ │ ├── BaseConversion.class │ │ │ ├── package$.class │ │ │ ├── package$Binary$.class │ │ │ ├── package$Binary.class │ │ │ ├── package$Decimal$.class │ │ │ ├── package$Decimal.class │ │ │ ├── package$Hexadecimal$.class │ │ │ ├── package$Hexadecimal.class │ │ │ ├── package$Number$$anonfun$1.class │ │ │ ├── package$Number$$anonfun$2.class │ │ │ ├── package$Number$class.class │ │ │ ├── package$Number.class │ │ │ └── package.class │ └── test-classes │ │ ├── com │ │ └── packt │ │ │ ├── BeanSpec$$anonfun$1.class │ │ │ ├── BeanSpec$$anonfun$2$$anonfun$apply$mcV$sp$1.class │ │ │ ├── BeanSpec$$anonfun$2.class │ │ │ ├── BeanSpec$$anonfun$3$$anonfun$apply$mcV$sp$2.class │ │ │ ├── BeanSpec$$anonfun$3.class │ │ │ ├── BeanSpec.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$1.class │ │ │ ├── BinaryToDecimalSpec.class │ │ │ ├── DecimalBinarySpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalBinarySpec$$anonfun$1.class │ │ │ ├── DecimalBinarySpec.class │ │ │ ├── DecimalHexadecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalHexadecimalSpec$$anonfun$1.class │ │ │ ├── DecimalHexadecimalSpec.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$2.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$3.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1.class │ │ │ ├── DecimalToBinaryGenSpec.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$2.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$3.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1.class │ │ │ ├── DecimalToHexadecimalGenSpec.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$1.class │ │ │ ├── HexadecimalToDecimalSpec.class │ │ │ └── UnitSpec.class │ │ └── support │ │ └── steps │ │ ├── BaseConversionSteps$$anonfun$1.class │ │ ├── BaseConversionSteps$$anonfun$2.class │ │ ├── BaseConversionSteps$$anonfun$3.class │ │ ├── BaseConversionSteps.class │ │ └── BaseSteps.class │ └── streams │ ├── $global │ ├── clean │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.11 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.11 │ │ ├── inputs │ │ └── output │ ├── compile │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── runtime │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── test │ ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export │ └── unmanagedJars │ └── $global │ └── streams │ └── export ├── Chapter 9 └── BaseConversionAPI │ ├── project │ └── target │ │ └── streams │ │ ├── compile │ │ └── unmanagedJars │ │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── runtime │ │ ├── dependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── exportedProducts │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── fullClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── internalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── src │ ├── main │ │ └── scala-2.11 │ │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion.scala │ │ │ └── package.scala │ └── test │ │ ├── features │ │ └── binary.feature │ │ └── scala-2.11 │ │ ├── com │ │ └── packt │ │ │ ├── BeanSpec.scala │ │ │ ├── BinaryToDecimalGenSpec.scala │ │ │ ├── BinaryToDecimalSpec.scala │ │ │ ├── DecimalBinarySpec.scala │ │ │ ├── DecimalHexadecimalSpec.scala │ │ │ ├── DecimalToHexadecimalGenSpec.scala │ │ │ ├── HexadecimalToDecimalSpec.scala │ │ │ └── UnitSpec.scala │ │ └── support │ │ └── steps │ │ ├── BaseConversionSteps.scala │ │ └── BaseSteps.scala │ └── target │ ├── .history │ ├── resolution-cache │ ├── default │ │ └── baseconversionapi_2.11 │ │ │ └── 1.0 │ │ │ ├── resolved.xml.properties │ │ │ └── resolved.xml.xml │ └── reports │ │ ├── default-baseconversionapi_2.11-compile-internal.xml │ │ ├── default-baseconversionapi_2.11-compile.xml │ │ ├── default-baseconversionapi_2.11-docs.xml │ │ ├── default-baseconversionapi_2.11-optional.xml │ │ ├── default-baseconversionapi_2.11-plugin.xml │ │ ├── default-baseconversionapi_2.11-pom.xml │ │ ├── default-baseconversionapi_2.11-provided.xml │ │ ├── default-baseconversionapi_2.11-runtime-internal.xml │ │ ├── default-baseconversionapi_2.11-runtime.xml │ │ ├── default-baseconversionapi_2.11-scala-tool.xml │ │ ├── default-baseconversionapi_2.11-sources.xml │ │ ├── default-baseconversionapi_2.11-test-internal.xml │ │ ├── default-baseconversionapi_2.11-test.xml │ │ ├── ivy-report.css │ │ └── ivy-report.xsl │ ├── scala-2.11 │ ├── classes │ │ └── com │ │ │ └── packt │ │ │ ├── BaseConversion$$anonfun$1.class │ │ │ ├── BaseConversion$$anonfun$2.class │ │ │ ├── BaseConversion$.class │ │ │ ├── BaseConversion.class │ │ │ ├── package$.class │ │ │ ├── package$Binary$.class │ │ │ ├── package$Binary.class │ │ │ ├── package$Decimal$.class │ │ │ ├── package$Decimal.class │ │ │ ├── package$Hexadecimal$.class │ │ │ ├── package$Hexadecimal.class │ │ │ ├── package$Number$$anonfun$1.class │ │ │ ├── package$Number$$anonfun$2.class │ │ │ ├── package$Number$class.class │ │ │ ├── package$Number.class │ │ │ └── package.class │ └── test-classes │ │ ├── com │ │ └── packt │ │ │ ├── BeanSpec$$anonfun$1.class │ │ │ ├── BeanSpec$$anonfun$2$$anonfun$apply$mcV$sp$1.class │ │ │ ├── BeanSpec$$anonfun$2.class │ │ │ ├── BeanSpec$$anonfun$3$$anonfun$apply$mcV$sp$2.class │ │ │ ├── BeanSpec$$anonfun$3.class │ │ │ ├── BeanSpec.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── BinaryToDecimalSpec$$anonfun$1.class │ │ │ ├── BinaryToDecimalSpec.class │ │ │ ├── DecimalBinarySpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalBinarySpec$$anonfun$1.class │ │ │ ├── DecimalBinarySpec.class │ │ │ ├── DecimalHexadecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalHexadecimalSpec$$anonfun$1.class │ │ │ ├── DecimalHexadecimalSpec.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$2.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$3.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalToBinaryGenSpec$$anonfun$1.class │ │ │ ├── DecimalToBinaryGenSpec.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$2.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$3.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── DecimalToHexadecimalGenSpec$$anonfun$1.class │ │ │ ├── DecimalToHexadecimalGenSpec.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$1$$anonfun$apply$mcV$sp$1.class │ │ │ ├── HexadecimalToDecimalSpec$$anonfun$1.class │ │ │ ├── HexadecimalToDecimalSpec.class │ │ │ └── UnitSpec.class │ │ └── support │ │ └── steps │ │ ├── BaseConversionSteps$$anonfun$1.class │ │ ├── BaseConversionSteps$$anonfun$2.class │ │ ├── BaseConversionSteps$$anonfun$3.class │ │ ├── BaseConversionSteps.class │ │ └── BaseSteps.class │ └── streams │ ├── $global │ ├── clean │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── dependencyPositions │ │ └── $global │ │ │ └── streams │ │ │ └── update_cache_2.11 │ │ │ ├── input_dsp │ │ │ └── output_dsp │ ├── ivyConfiguration │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── ivySbt │ │ └── $global │ │ │ └── streams │ │ │ └── out │ ├── projectDescriptors │ │ └── $global │ │ │ └── streams │ │ │ └── out │ └── update │ │ └── $global │ │ └── streams │ │ ├── out │ │ └── update_cache_2.11 │ │ ├── inputs │ │ └── output │ ├── compile │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ ├── runtime │ ├── externalDependencyClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── managedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ ├── unmanagedClasspath │ │ └── $global │ │ │ └── streams │ │ │ └── export │ └── unmanagedJars │ │ └── $global │ │ └── streams │ │ └── export │ └── test │ ├── externalDependencyClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── managedClasspath │ └── $global │ │ └── streams │ │ └── export │ ├── unmanagedClasspath │ └── $global │ │ └── streams │ │ └── export │ └── unmanagedJars │ └── $global │ └── streams │ └── export ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/.gitignore -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/.name: -------------------------------------------------------------------------------- 1 | HelloWorld -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/modules/helloworld-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/modules/helloworld-build.iml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/modules/helloworld.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/modules/helloworld.iml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/sbt.xml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/build.sbt -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$1dd5927e7356c08085d1$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$1dd5927e7356c08085d1$.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$1dd5927e7356c08085d1.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$1dd5927e7356c08085d1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$1dd5927e7356c08085d1.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$928033f242c1641a65cb$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$928033f242c1641a65cb$.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$928033f242c1641a65cb.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$928033f242c1641a65cb.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$928033f242c1641a65cb.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$996db1fbb14004b8ffe7$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$996db1fbb14004b8ffe7$.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$996db1fbb14004b8ffe7.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$996db1fbb14004b8ffe7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$996db1fbb14004b8ffe7.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$a25057f37481ed880245$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$a25057f37481ed880245$.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$a25057f37481ed880245.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$a25057f37481ed880245.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$a25057f37481ed880245.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$a71963adbe00ba65c576$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$a71963adbe00ba65c576$.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$a71963adbe00ba65c576.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$a71963adbe00ba65c576.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$a71963adbe00ba65c576.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$c28991be80365d29a6a6$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$c28991be80365d29a6a6$.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$c28991be80365d29a6a6.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$c28991be80365d29a6a6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$c28991be80365d29a6a6.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$efced808f705599c06f2$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$efced808f705599c06f2$.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$efced808f705599c06f2.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/config-classes/$efced808f705599c06f2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/config-classes/$efced808f705599c06f2.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/project/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/src/main/scala-2.11/com/packt/Hello.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/src/main/scala-2.11/com/packt/Hello.scala -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/src/test/scala-2.11/com/packt/HelloTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/src/test/scala-2.11/com/packt/HelloTest.scala -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/scala-2.11/classes/com/packt/Hello$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/scala-2.11/classes/com/packt/Hello$.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/scala-2.11/classes/com/packt/Hello.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/scala-2.11/classes/com/packt/Hello.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/scala-2.11/test-classes/com/packt/HelloTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/scala-2.11/test-classes/com/packt/HelloTests.class -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/$global/$global/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/$global/ivyConfiguration/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/compileIncremental/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/compile/compileIncremental/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/copyResources/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/compile/copyResources/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- 1 | /Gaurav/Packt/HelloWorld/target/scala-2.11/classes 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/compile/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/runtime/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- 1 | /Gaurav/Packt/HelloWorld/target/scala-2.11/classes 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/runtime/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/$global/$global/definedTestNames/data: -------------------------------------------------------------------------------- 1 | com.packt.HelloTests -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/compileIncremental/$global/streams/export -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/compileIncremental/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/compileIncremental/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/copyResources/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/copyResources/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/definedTests/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/definedTests/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/dependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/dependencyClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- 1 | /Gaurav/Packt/HelloWorld/target/scala-2.11/test-classes 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/fullClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/fullClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | /Gaurav/Packt/HelloWorld/target/scala-2.11/classes 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/loadedTestFrameworks/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/loadedTestFrameworks/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/test/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/test/$global/streams/out -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/test/$global/streams/succeeded_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/streams/test/test/$global/streams/succeeded_tests -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 1/HelloWorld/target/test-reports/com.packt.HelloTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 1/HelloWorld/target/test-reports/com.packt.HelloTests.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/.name: -------------------------------------------------------------------------------- 1 | BaseConversionAPI -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/modules/baseconversionapi-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/modules/baseconversionapi-build.iml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/modules/baseconversionapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/modules/baseconversionapi.iml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/sbt.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/build.sbt -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/config-classes/$14a6a477e6b5ac8d15bf.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/config-classes/$192ebbb4955d338bfa97.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/config-classes/$1dd3e6d60755bed71714.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/config-classes/$2d8acc17b15fad2c4319.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/config-classes/$54b1a58f4589da1dafa0.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/config-classes/$6fb33301d490e12b2e45.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/config-classes/$b47a0afd38795e03299e.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/project/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/project/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/src/main/scala-2.11/com/packt/BaseConversion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/src/main/scala-2.11/com/packt/BaseConversion.scala -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/src/main/scala-2.11/com/packt/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/src/main/scala-2.11/com/packt/package.scala -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/src/test/scala-2.11/com/packt/BeanSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/src/test/scala-2.11/com/packt/BeanSpec.scala -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/src/test/scala-2.11/com/packt/BinaryToDecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/src/test/scala-2.11/com/packt/BinaryToDecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/scala-2.11/classes/com/packt/package$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/target/scala-2.11/classes/com/packt/package$.class -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/scala-2.11/classes/com/packt/package.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/target/scala-2.11/classes/com/packt/package.class -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/scala-2.11/test-classes/com/packt/BeanSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/target/scala-2.11/test-classes/com/packt/BeanSpec.class -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 2/BaseConversionAPI/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 2/BaseConversionAPI/target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/.idea/.name: -------------------------------------------------------------------------------- 1 | BaseConversionAPI -------------------------------------------------------------------------------- /Chapter 3/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/libraries/SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/libraries/SBT__org_scala_lang_modules_scala_xml_2_11_1_0_2_jar.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/libraries/SBT__org_scala_lang_scala_library_2_11_8_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/libraries/SBT__org_scala_lang_scala_library_2_11_8_jar.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/libraries/SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/libraries/SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/libraries/SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/libraries/SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/modules/baseconversionapi-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/modules/baseconversionapi-build.iml -------------------------------------------------------------------------------- /Chapter 3/.idea/modules/baseconversionapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/modules/baseconversionapi.iml -------------------------------------------------------------------------------- /Chapter 3/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/sbt.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter 3/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter 3/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/build.sbt -------------------------------------------------------------------------------- /Chapter 3/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$14a6a477e6b5ac8d15bf$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$14a6a477e6b5ac8d15bf$.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$14a6a477e6b5ac8d15bf.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$14a6a477e6b5ac8d15bf.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$14a6a477e6b5ac8d15bf.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$192ebbb4955d338bfa97$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$192ebbb4955d338bfa97$.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$192ebbb4955d338bfa97.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$192ebbb4955d338bfa97.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$192ebbb4955d338bfa97.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$1dd3e6d60755bed71714$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$1dd3e6d60755bed71714$.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$1dd3e6d60755bed71714.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$1dd3e6d60755bed71714.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$1dd3e6d60755bed71714.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$2d8acc17b15fad2c4319$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$2d8acc17b15fad2c4319$.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$2d8acc17b15fad2c4319.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$2d8acc17b15fad2c4319.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$2d8acc17b15fad2c4319.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$54b1a58f4589da1dafa0$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$54b1a58f4589da1dafa0$.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$54b1a58f4589da1dafa0.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$54b1a58f4589da1dafa0.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$54b1a58f4589da1dafa0.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$6fb33301d490e12b2e45$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$6fb33301d490e12b2e45$.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$6fb33301d490e12b2e45.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$6fb33301d490e12b2e45.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$6fb33301d490e12b2e45.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$b47a0afd38795e03299e$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$b47a0afd38795e03299e$.class -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$b47a0afd38795e03299e.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 3/project/target/config-classes/$b47a0afd38795e03299e.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/config-classes/$b47a0afd38795e03299e.class -------------------------------------------------------------------------------- /Chapter 3/project/target/resolution-cache/reports/default-helloworld-build-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/resolution-cache/reports/default-helloworld-build-docs.xml -------------------------------------------------------------------------------- /Chapter 3/project/target/resolution-cache/reports/default-helloworld-build-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/resolution-cache/reports/default-helloworld-build-pom.xml -------------------------------------------------------------------------------- /Chapter 3/project/target/resolution-cache/reports/default-helloworld-build-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/resolution-cache/reports/default-helloworld-build-test.xml -------------------------------------------------------------------------------- /Chapter 3/project/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 3/project/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/streams/$global/ivyConfiguration/$global/streams/out -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/compileIncremental/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/streams/compile/compileIncremental/$global/streams/out -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/copyResources/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/streams/compile/copyResources/$global/streams/out -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/streams/compile/exportedProducts/$global/streams/export -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/streams/compile/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/runtime/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/streams/runtime/exportedProducts/$global/streams/export -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/runtime/fullClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/project/target/streams/runtime/fullClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/src/main/scala-2.11/com/packt/BaseConversion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/src/main/scala-2.11/com/packt/BaseConversion.scala -------------------------------------------------------------------------------- /Chapter 3/src/main/scala-2.11/com/packt/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/src/main/scala-2.11/com/packt/package.scala -------------------------------------------------------------------------------- /Chapter 3/src/test/scala-2.11/com/packt/BeanSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/src/test/scala-2.11/com/packt/BeanSpec.scala -------------------------------------------------------------------------------- /Chapter 3/src/test/scala-2.11/com/packt/BinaryToDecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/src/test/scala-2.11/com/packt/BinaryToDecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 3/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala -------------------------------------------------------------------------------- /Chapter 3/src/test/scala-2.11/com/packt/DecimalHexadecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/src/test/scala-2.11/com/packt/DecimalHexadecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 3/src/test/scala-2.11/com/packt/HexadecimalToDecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/src/test/scala-2.11/com/packt/HexadecimalToDecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 3/src/test/scala-2.11/com/packt/UnitSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/src/test/scala-2.11/com/packt/UnitSpec.scala -------------------------------------------------------------------------------- /Chapter 3/target/.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/target/resolution-cache/reports/default-baseconversionapi_2.11-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/resolution-cache/reports/default-baseconversionapi_2.11-docs.xml -------------------------------------------------------------------------------- /Chapter 3/target/resolution-cache/reports/default-baseconversionapi_2.11-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/resolution-cache/reports/default-baseconversionapi_2.11-pom.xml -------------------------------------------------------------------------------- /Chapter 3/target/resolution-cache/reports/default-baseconversionapi_2.11-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/resolution-cache/reports/default-baseconversionapi_2.11-test.xml -------------------------------------------------------------------------------- /Chapter 3/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 3/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/BaseConversion$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/BaseConversion$.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/BaseConversion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/BaseConversion.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Binary$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Binary$.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Binary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Binary.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Decimal$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Decimal$.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Decimal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Decimal.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Hexadecimal$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Hexadecimal$.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Hexadecimal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Hexadecimal.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Number$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Number$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Number$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Number$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Number$class.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Number$class.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package$Number.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package$Number.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/classes/com/packt/package.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/classes/com/packt/package.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$3.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/BeanSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/BeanSpec.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/BinaryToDecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/BinaryToDecimalSpec.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/DecimalBinarySpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/DecimalBinarySpec.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/DecimalHexadecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/DecimalHexadecimalSpec.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/HexadecimalToDecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/HexadecimalToDecimalSpec.class -------------------------------------------------------------------------------- /Chapter 3/target/scala-2.11/test-classes/com/packt/UnitSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/scala-2.11/test-classes/com/packt/UnitSpec.class -------------------------------------------------------------------------------- /Chapter 3/target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/streams/$global/ivyConfiguration/$global/streams/out -------------------------------------------------------------------------------- /Chapter 3/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 3/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 3/target/streams/$global/update/$global/streams/update_cache_2.11/inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/streams/$global/update/$global/streams/update_cache_2.11/inputs -------------------------------------------------------------------------------- /Chapter 3/target/streams/$global/update/$global/streams/update_cache_2.11/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/streams/$global/update/$global/streams/update_cache_2.11/output -------------------------------------------------------------------------------- /Chapter 3/target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/streams/compile/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 3/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/streams/runtime/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 3/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/target/streams/test/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/streams/test/externalDependencyClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 3/target/streams/test/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 3/target/streams/test/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 3/target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 3/target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/.name: -------------------------------------------------------------------------------- 1 | BaseConversionAPI -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/modules/baseconversionapi-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/modules/baseconversionapi-build.iml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/modules/baseconversionapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/modules/baseconversionapi.iml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/sbt.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/build.sbt -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/config-classes/$119ce6e8d26aa5b332a3.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/config-classes/$4f55bf3139792637229f.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/config-classes/$86e1d008f63af1cd65c1.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/config-classes/$91efe41af7bb98cca050.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/config-classes/$aa949242525cf8e2f977.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/config-classes/$b65d900443566b21706c.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/config-classes/$c326b7f5018689a01c49.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/src/main/scala-2.11/com/packt/BaseConversion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/src/main/scala-2.11/com/packt/BaseConversion.scala -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/src/main/scala-2.11/com/packt/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/src/main/scala-2.11/com/packt/package.scala -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/src/test/scala-2.11/com/packt/BeanSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/src/test/scala-2.11/com/packt/BeanSpec.scala -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/src/test/scala-2.11/com/packt/UnitSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/src/test/scala-2.11/com/packt/UnitSpec.scala -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/scala-2.11/classes/com/packt/package$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/target/scala-2.11/classes/com/packt/package$.class -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/scala-2.11/classes/com/packt/package.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/target/scala-2.11/classes/com/packt/package.class -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 4/BaseConversionAPI/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 4/BaseConversionAPI/target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/.name: -------------------------------------------------------------------------------- 1 | BaseConversionAPI -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/libraries/SBT__junit_junit_4_11_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/libraries/SBT__junit_junit_4_11_jar.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/modules/baseconversionapi-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/modules/baseconversionapi-build.iml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/modules/baseconversionapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/modules/baseconversionapi.iml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/sbt.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 5/BaseConversionAPI/build.sbt -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$3c22172f4fdcd4a202f6.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$48eaafc5ff600d8adbf8.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$57171d9f4c7cbb18702e.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$8f72bac64a98346fb3a6.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$b4fa0fbc2fb7ba5ef026.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$bc741f16a1ec1554f826.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$c674717ff585cc9df666.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$dc6f4a997285bcdd2fc4.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$ec1033c86b78587c7005.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/config-classes/$fc75301935c00bb16463.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 5/BaseConversionAPI/project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/.idea/.name: -------------------------------------------------------------------------------- 1 | BaseConversionAPI -------------------------------------------------------------------------------- /Chapter 6/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_core_1_2_4_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_core_1_2_4_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_html_0_2_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_html_0_2_3_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_junit_1_2_4_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_junit_1_2_4_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_jvm_deps_1_0_5_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_jvm_deps_1_0_5_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_scala_2_11_1_2_4_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__info_cukes_cucumber_scala_2_11_1_2_4_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__info_cukes_gherkin_2_12_2_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__info_cukes_gherkin_2_12_2_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__junit_junit_4_11_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__junit_junit_4_11_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__org_hamcrest_hamcrest_core_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__org_hamcrest_hamcrest_core_1_3_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__org_scala_lang_scala_library_2_11_8_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__org_scala_lang_scala_library_2_11_8_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/libraries/SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/libraries/SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/modules/baseconversionapi-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/modules/baseconversionapi-build.iml -------------------------------------------------------------------------------- /Chapter 6/.idea/modules/baseconversionapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/modules/baseconversionapi.iml -------------------------------------------------------------------------------- /Chapter 6/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/sbt.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter 6/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter 6/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/build.sbt -------------------------------------------------------------------------------- /Chapter 6/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$3c22172f4fdcd4a202f6$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$3c22172f4fdcd4a202f6$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$3c22172f4fdcd4a202f6.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$3c22172f4fdcd4a202f6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$3c22172f4fdcd4a202f6.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$48eaafc5ff600d8adbf8$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$48eaafc5ff600d8adbf8$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$48eaafc5ff600d8adbf8.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$48eaafc5ff600d8adbf8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$48eaafc5ff600d8adbf8.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$57171d9f4c7cbb18702e$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$57171d9f4c7cbb18702e$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$57171d9f4c7cbb18702e.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$57171d9f4c7cbb18702e.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$57171d9f4c7cbb18702e.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$8f72bac64a98346fb3a6$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$8f72bac64a98346fb3a6$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$8f72bac64a98346fb3a6.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$8f72bac64a98346fb3a6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$8f72bac64a98346fb3a6.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$b4fa0fbc2fb7ba5ef026$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$b4fa0fbc2fb7ba5ef026$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$b4fa0fbc2fb7ba5ef026.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$b4fa0fbc2fb7ba5ef026.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$b4fa0fbc2fb7ba5ef026.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$bc741f16a1ec1554f826$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$bc741f16a1ec1554f826$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$bc741f16a1ec1554f826.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$bc741f16a1ec1554f826.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$bc741f16a1ec1554f826.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$c674717ff585cc9df666$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$c674717ff585cc9df666$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$c674717ff585cc9df666.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$c674717ff585cc9df666.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$c674717ff585cc9df666.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$dc6f4a997285bcdd2fc4$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$dc6f4a997285bcdd2fc4$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$dc6f4a997285bcdd2fc4.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$dc6f4a997285bcdd2fc4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$dc6f4a997285bcdd2fc4.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$ec1033c86b78587c7005$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$ec1033c86b78587c7005$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$ec1033c86b78587c7005.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$ec1033c86b78587c7005.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$ec1033c86b78587c7005.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$fc75301935c00bb16463$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$fc75301935c00bb16463$.class -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$fc75301935c00bb16463.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 6/project/target/config-classes/$fc75301935c00bb16463.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/config-classes/$fc75301935c00bb16463.class -------------------------------------------------------------------------------- /Chapter 6/project/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 6/project/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/streams/$global/ivyConfiguration/$global/streams/out -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/compileIncremental/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/streams/compile/compileIncremental/$global/streams/out -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/copyResources/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/streams/compile/copyResources/$global/streams/out -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/streams/compile/exportedProducts/$global/streams/export -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/streams/compile/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/runtime/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/streams/runtime/exportedProducts/$global/streams/export -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/runtime/fullClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/project/target/streams/runtime/fullClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/src/main/scala-2.11/com/packt/BaseConversion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/main/scala-2.11/com/packt/BaseConversion.scala -------------------------------------------------------------------------------- /Chapter 6/src/main/scala-2.11/com/packt/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/main/scala-2.11/com/packt/package.scala -------------------------------------------------------------------------------- /Chapter 6/src/test/features/binary.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/features/binary.feature -------------------------------------------------------------------------------- /Chapter 6/src/test/scala-2.11/com/packt/BeanSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/scala-2.11/com/packt/BeanSpec.scala -------------------------------------------------------------------------------- /Chapter 6/src/test/scala-2.11/com/packt/BinaryToDecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/scala-2.11/com/packt/BinaryToDecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 6/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala -------------------------------------------------------------------------------- /Chapter 6/src/test/scala-2.11/com/packt/DecimalHexadecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/scala-2.11/com/packt/DecimalHexadecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 6/src/test/scala-2.11/com/packt/HexadecimalToDecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/scala-2.11/com/packt/HexadecimalToDecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 6/src/test/scala-2.11/com/packt/UnitSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/scala-2.11/com/packt/UnitSpec.scala -------------------------------------------------------------------------------- /Chapter 6/src/test/scala-2.11/support/steps/BaseConversionSteps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/scala-2.11/support/steps/BaseConversionSteps.scala -------------------------------------------------------------------------------- /Chapter 6/src/test/scala-2.11/support/steps/BaseSteps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/src/test/scala-2.11/support/steps/BaseSteps.scala -------------------------------------------------------------------------------- /Chapter 6/target/.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/target/resolution-cache/reports/default-baseconversionapi_2.11-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/resolution-cache/reports/default-baseconversionapi_2.11-docs.xml -------------------------------------------------------------------------------- /Chapter 6/target/resolution-cache/reports/default-baseconversionapi_2.11-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/resolution-cache/reports/default-baseconversionapi_2.11-pom.xml -------------------------------------------------------------------------------- /Chapter 6/target/resolution-cache/reports/default-baseconversionapi_2.11-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/resolution-cache/reports/default-baseconversionapi_2.11-test.xml -------------------------------------------------------------------------------- /Chapter 6/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 6/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/BaseConversion$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/BaseConversion$.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/BaseConversion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/BaseConversion.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Binary$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Binary$.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Binary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Binary.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Decimal$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Decimal$.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Decimal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Decimal.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Hexadecimal$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Hexadecimal$.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Hexadecimal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Hexadecimal.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Number$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Number$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Number$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Number$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Number$class.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Number$class.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package$Number.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package$Number.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/classes/com/packt/package.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/classes/com/packt/package.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$3.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/BeanSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/BeanSpec.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/BinaryToDecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/BinaryToDecimalSpec.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/DecimalBinarySpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/DecimalBinarySpec.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/DecimalHexadecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/DecimalHexadecimalSpec.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/HexadecimalToDecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/HexadecimalToDecimalSpec.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/com/packt/UnitSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/com/packt/UnitSpec.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/support/steps/BaseConversionSteps.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/support/steps/BaseConversionSteps.class -------------------------------------------------------------------------------- /Chapter 6/target/scala-2.11/test-classes/support/steps/BaseSteps.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/scala-2.11/test-classes/support/steps/BaseSteps.class -------------------------------------------------------------------------------- /Chapter 6/target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/streams/$global/ivyConfiguration/$global/streams/out -------------------------------------------------------------------------------- /Chapter 6/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 6/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 6/target/streams/$global/update/$global/streams/update_cache_2.11/inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/streams/$global/update/$global/streams/update_cache_2.11/inputs -------------------------------------------------------------------------------- /Chapter 6/target/streams/$global/update/$global/streams/update_cache_2.11/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/streams/$global/update/$global/streams/update_cache_2.11/output -------------------------------------------------------------------------------- /Chapter 6/target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/streams/compile/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 6/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/streams/runtime/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 6/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/target/streams/test/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/streams/test/externalDependencyClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 6/target/streams/test/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 6/target/streams/test/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 6/target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 6/target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/.name: -------------------------------------------------------------------------------- 1 | BaseConversionAPI -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/excludeFromValidation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/excludeFromValidation.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/libraries/SBT__junit_junit_4_11_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/libraries/SBT__junit_junit_4_11_jar.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/modules/baseconversionapi-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/modules/baseconversionapi-build.iml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/modules/baseconversionapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/modules/baseconversionapi.iml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/sbt.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/build.sbt -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$07bf7c52e99dabf46579.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$2ca9a48f9d007c33c2a4.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$44169b4bf4114b16e003.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$55087a73b7c7c0c7b822.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$a2a2e6a7334d7f203fa9.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$c5501965a0d3cacf6026.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$d61df1966dcf36b8c24f.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$e0ed8a25ab944e254641.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$e6660e701d8a23555637.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$e8001386c030aababfbc.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/config-classes/$ecafc9f5bee8b510443e.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/src/main/scala-2.11/com/packt/BaseConversion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/src/main/scala-2.11/com/packt/BaseConversion.scala -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/src/main/scala-2.11/com/packt/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/src/main/scala-2.11/com/packt/package.scala -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/src/test/features/binary.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/src/test/features/binary.feature -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/src/test/scala-2.11/com/packt/BeanSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/src/test/scala-2.11/com/packt/BeanSpec.scala -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/src/test/scala-2.11/com/packt/UnitSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/src/test/scala-2.11/com/packt/UnitSpec.scala -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/src/test/scala-2.11/support/steps/BaseSteps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/src/test/scala-2.11/support/steps/BaseSteps.scala -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/scala-2.11/classes/com/packt/package$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/target/scala-2.11/classes/com/packt/package$.class -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/scala-2.11/classes/com/packt/package.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/target/scala-2.11/classes/com/packt/package.class -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 7/BaseConversionAPI/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 7/BaseConversionAPI/target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/.idea/.name: -------------------------------------------------------------------------------- 1 | BaseConversionAPI -------------------------------------------------------------------------------- /Chapter 8/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/compiler.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/excludeFromValidation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/excludeFromValidation.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_core_1_2_4_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_core_1_2_4_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_html_0_2_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_html_0_2_3_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_junit_1_2_4_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_junit_1_2_4_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_jvm_deps_1_0_5_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_jvm_deps_1_0_5_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_scala_2_11_1_2_4_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__info_cukes_cucumber_scala_2_11_1_2_4_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__info_cukes_gherkin_2_12_2_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__info_cukes_gherkin_2_12_2_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__junit_junit_4_11_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__junit_junit_4_11_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__org_hamcrest_hamcrest_core_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__org_hamcrest_hamcrest_core_1_3_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__org_scala_lang_scala_library_2_11_8_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__org_scala_lang_scala_library_2_11_8_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__org_scala_lang_scala_reflect_2_11_7_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__org_scala_sbt_test_interface_1_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__org_scala_sbt_test_interface_1_0_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__org_scalacheck_scalacheck_2_11_1_12_5_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__org_scalacheck_scalacheck_2_11_1_12_5_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/libraries/SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/libraries/SBT__org_scalatest_scalatest_2_11_2_2_6_jar.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/modules/baseconversionapi-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/modules/baseconversionapi-build.iml -------------------------------------------------------------------------------- /Chapter 8/.idea/modules/baseconversionapi.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/modules/baseconversionapi.iml -------------------------------------------------------------------------------- /Chapter 8/.idea/sbt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/sbt.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/scala_compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/scala_compiler.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter 8/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/.idea/workspace.xml -------------------------------------------------------------------------------- /Chapter 8/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/build.sbt -------------------------------------------------------------------------------- /Chapter 8/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.8 -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$07bf7c52e99dabf46579$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$07bf7c52e99dabf46579$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$07bf7c52e99dabf46579.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$07bf7c52e99dabf46579.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$07bf7c52e99dabf46579.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$2ca9a48f9d007c33c2a4$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$2ca9a48f9d007c33c2a4$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$2ca9a48f9d007c33c2a4.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$2ca9a48f9d007c33c2a4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$2ca9a48f9d007c33c2a4.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$44169b4bf4114b16e003$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$44169b4bf4114b16e003$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$44169b4bf4114b16e003.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$44169b4bf4114b16e003.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$44169b4bf4114b16e003.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$55087a73b7c7c0c7b822$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$55087a73b7c7c0c7b822$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$55087a73b7c7c0c7b822.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$55087a73b7c7c0c7b822.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$55087a73b7c7c0c7b822.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$a2a2e6a7334d7f203fa9$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$a2a2e6a7334d7f203fa9$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$a2a2e6a7334d7f203fa9.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$a2a2e6a7334d7f203fa9.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$a2a2e6a7334d7f203fa9.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$c5501965a0d3cacf6026$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$c5501965a0d3cacf6026$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$c5501965a0d3cacf6026.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$c5501965a0d3cacf6026.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$c5501965a0d3cacf6026.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$d61df1966dcf36b8c24f$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$d61df1966dcf36b8c24f$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$d61df1966dcf36b8c24f.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$d61df1966dcf36b8c24f.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$d61df1966dcf36b8c24f.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e0ed8a25ab944e254641$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$e0ed8a25ab944e254641$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e0ed8a25ab944e254641.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e0ed8a25ab944e254641.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$e0ed8a25ab944e254641.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e6660e701d8a23555637$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$e6660e701d8a23555637$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e6660e701d8a23555637.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e6660e701d8a23555637.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$e6660e701d8a23555637.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e8001386c030aababfbc$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$e8001386c030aababfbc$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e8001386c030aababfbc.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$e8001386c030aababfbc.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$e8001386c030aababfbc.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$ecafc9f5bee8b510443e$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$ecafc9f5bee8b510443e$.class -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$ecafc9f5bee8b510443e.cache: -------------------------------------------------------------------------------- 1 | sbt.internals.DslEntry -------------------------------------------------------------------------------- /Chapter 8/project/target/config-classes/$ecafc9f5bee8b510443e.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/config-classes/$ecafc9f5bee8b510443e.class -------------------------------------------------------------------------------- /Chapter 8/project/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 8/project/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/$global/$global/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/streams/$global/ivyConfiguration/$global/streams/out -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/$global/$global/discoveredMainClasses/data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/compile/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/compileIncremental/$global/streams/export: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/compileIncremental/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/streams/compile/compileIncremental/$global/streams/out -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/copyResources/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/streams/compile/copyResources/$global/streams/out -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/streams/compile/exportedProducts/$global/streams/export -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/internalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/streams/compile/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/runtime/exportedProducts/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/streams/runtime/exportedProducts/$global/streams/export -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/runtime/fullClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/project/target/streams/runtime/fullClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/src/main/scala-2.11/com/packt/BaseConversion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/main/scala-2.11/com/packt/BaseConversion.scala -------------------------------------------------------------------------------- /Chapter 8/src/main/scala-2.11/com/packt/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/main/scala-2.11/com/packt/package.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/features/binary.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/features/binary.feature -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/com/packt/BeanSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/com/packt/BeanSpec.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/com/packt/BinaryToDecimalGenSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/com/packt/BinaryToDecimalGenSpec.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/com/packt/BinaryToDecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/com/packt/BinaryToDecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/com/packt/DecimalHexadecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/com/packt/DecimalHexadecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/com/packt/DecimalToHexadecimalGenSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/com/packt/DecimalToHexadecimalGenSpec.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/com/packt/HexadecimalToDecimalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/com/packt/HexadecimalToDecimalSpec.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/com/packt/UnitSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/com/packt/UnitSpec.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/support/steps/BaseConversionSteps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/support/steps/BaseConversionSteps.scala -------------------------------------------------------------------------------- /Chapter 8/src/test/scala-2.11/support/steps/BaseSteps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/src/test/scala-2.11/support/steps/BaseSteps.scala -------------------------------------------------------------------------------- /Chapter 8/target/.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/target/resolution-cache/reports/default-baseconversionapi_2.11-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/resolution-cache/reports/default-baseconversionapi_2.11-docs.xml -------------------------------------------------------------------------------- /Chapter 8/target/resolution-cache/reports/default-baseconversionapi_2.11-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/resolution-cache/reports/default-baseconversionapi_2.11-pom.xml -------------------------------------------------------------------------------- /Chapter 8/target/resolution-cache/reports/default-baseconversionapi_2.11-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/resolution-cache/reports/default-baseconversionapi_2.11-test.xml -------------------------------------------------------------------------------- /Chapter 8/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 8/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/BaseConversion$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/BaseConversion$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/BaseConversion$.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/BaseConversion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/BaseConversion.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Binary$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Binary$.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Binary.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Binary.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Decimal$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Decimal$.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Decimal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Decimal.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Hexadecimal$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Hexadecimal$.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Hexadecimal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Hexadecimal.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Number$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Number$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Number$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Number$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Number$class.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Number$class.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package$Number.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package$Number.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/classes/com/packt/package.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/classes/com/packt/package.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$1.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$2.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/BeanSpec$$anonfun$3.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/BeanSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/BeanSpec.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/BinaryToDecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/BinaryToDecimalSpec.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/DecimalBinarySpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/DecimalBinarySpec.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/DecimalHexadecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/DecimalHexadecimalSpec.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/DecimalToBinaryGenSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/DecimalToBinaryGenSpec.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/HexadecimalToDecimalSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/HexadecimalToDecimalSpec.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/com/packt/UnitSpec.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/com/packt/UnitSpec.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/support/steps/BaseConversionSteps.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/support/steps/BaseConversionSteps.class -------------------------------------------------------------------------------- /Chapter 8/target/scala-2.11/test-classes/support/steps/BaseSteps.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/scala-2.11/test-classes/support/steps/BaseSteps.class -------------------------------------------------------------------------------- /Chapter 8/target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/target/streams/$global/ivyConfiguration/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/streams/$global/ivyConfiguration/$global/streams/out -------------------------------------------------------------------------------- /Chapter 8/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 8/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 8/target/streams/$global/update/$global/streams/update_cache_2.11/inputs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/streams/$global/update/$global/streams/update_cache_2.11/inputs -------------------------------------------------------------------------------- /Chapter 8/target/streams/$global/update/$global/streams/update_cache_2.11/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/streams/$global/update/$global/streams/update_cache_2.11/output -------------------------------------------------------------------------------- /Chapter 8/target/streams/compile/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/streams/compile/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 8/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/streams/runtime/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 8/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/target/streams/test/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/streams/test/externalDependencyClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 8/target/streams/test/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 8/target/streams/test/managedClasspath/$global/streams/export -------------------------------------------------------------------------------- /Chapter 8/target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 8/target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/project/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/project/target/streams/runtime/externalDependencyClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/project/target/streams/runtime/managedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/project/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/project/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/src/main/scala-2.11/com/packt/BaseConversion.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/src/main/scala-2.11/com/packt/BaseConversion.scala -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/src/main/scala-2.11/com/packt/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/src/main/scala-2.11/com/packt/package.scala -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/src/test/features/binary.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/src/test/features/binary.feature -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/src/test/scala-2.11/com/packt/BeanSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/src/test/scala-2.11/com/packt/BeanSpec.scala -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/src/test/scala-2.11/com/packt/DecimalBinarySpec.scala -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/src/test/scala-2.11/com/packt/UnitSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/src/test/scala-2.11/com/packt/UnitSpec.scala -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/src/test/scala-2.11/support/steps/BaseSteps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/src/test/scala-2.11/support/steps/BaseSteps.scala -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/.history: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/resolution-cache/reports/ivy-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/target/resolution-cache/reports/ivy-report.css -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/resolution-cache/reports/ivy-report.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/target/resolution-cache/reports/ivy-report.xsl -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/scala-2.11/classes/com/packt/package$.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/target/scala-2.11/classes/com/packt/package$.class -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/scala-2.11/classes/com/packt/package.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/target/scala-2.11/classes/com/packt/package.class -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/$global/clean/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/$global/ivySbt/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/$global/projectDescriptors/$global/streams/out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/$global/update/$global/streams/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/Chapter 9/BaseConversionAPI/target/streams/$global/update/$global/streams/out -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/compile/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/compile/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/runtime/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/runtime/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/test/unmanagedClasspath/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter 9/BaseConversionAPI/target/streams/test/unmanagedJars/$global/streams/export: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Scala-Test-Driven-Development/HEAD/README.md --------------------------------------------------------------------------------