All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tfixture.smartrics-RestFixture.4.0.source-code.log4j.xml Maven / Gradle / Ivy

Go to download

The RestFixture is a FitNesse (http://fitnesse.org) fixture that allows developers and/or product owners to write test fixtures for REST services with simplicity in mind. The idea is to write tests that are self documenting and easy to write and read, without the need to write Java code. The fixture allows test writers to express tests as actions (any of the allowed HTTP methods) to operate on resource URIs and express expectations on the content of the return code, headers and body. All without writing one single line of Java code. And it also works as a living/executable documentation of the API.

There is a newer version: 4.4
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration PUBLIC "-//LOGGER" "http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/xml/doc-files/log4j.dtd">
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
  <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
    <param name="Target" value="System.out" />
    <param name="Threshold" value="DEBUG" />
    <layout class="org.apache.log4j.PatternLayout">
      <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] - %m%n" />
    </layout>
  </appender>

  <appender name="httptraffic" class="org.apache.log4j.FileAppender" >
    <param name="File" value="httptraffic.log" />
    <param name="Append" value="true" />
    <layout class="org.apache.log4j.PatternLayout">
      <param name="ConversionPattern" value="%t %-5p %c{2} - %m%n" />
    </layout>
  </appender>

  <category name="httpclient.wire" additivity="false">
    <priority value="WARN" />
    <appender-ref ref="CONSOLE" />
  </category>

  <root>
    <priority value="DEBUG" />
    <appender-ref ref="CONSOLE" />
  </root>
</log4j:configuration>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy