This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.gradle.api.logging.LogLevel; | |
import org.gradle.api.logging.Logging; | |
import org.slf4j.Marker; | |
/** | |
* Created by ahasbini on 11-Oct-19. | |
*/ | |
public class Logger implements org.gradle.api.logging.Logger { | |
private static boolean useQuietLogs = false; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package test.ahasbini.com.test; | |
import android.util.Log; | |
import org.junit.After; | |
import org.junit.Assert; | |
import org.junit.Before; | |
import org.junit.Rule; | |
import org.junit.Test; | |
import org.junit.rules.RuleChain; |