Initial commit
This commit is contained in:
parent
48cda1a34b
commit
c4999f82ce
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
apply from: "../android-configs/lib-config.gradle"
|
||||
|
||||
dependencies {
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
<manifest package="ru.touchin.roboswag.textprocessing" />
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
package ru.touchin.roboswag.textprocessing
|
||||
|
||||
import nl.bigo.pcreparser.PCREBaseListener
|
||||
import nl.bigo.pcreparser.PCRELexer
|
||||
import nl.bigo.pcreparser.PCREParser
|
||||
import org.antlr.v4.runtime.CharStreams
|
||||
import org.antlr.v4.runtime.CommonTokenStream
|
||||
import org.antlr.v4.runtime.tree.ParseTreeWalker
|
||||
|
||||
class TextProcessingBuilder(regex: String, inputText: String)
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
</resources>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
package ru.touchin.roboswag.textprocessing
|
||||
|
||||
import org.junit.Assert
|
||||
import org.junit.Test
|
||||
|
||||
class TextProcessingBuilderTest
|
||||
Loading…
Reference in New Issue