We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d806573 commit 42d394cCopy full SHA for 42d394c
src/org/sosy_lab/java_smt/basicimpl/TokenizerTest.java renamed to src/org/sosy_lab/java_smt/test/TokenizerTest.java
@@ -8,17 +8,19 @@
8
* SPDX-License-Identifier: Apache-2.0
9
*/
10
11
-package org.sosy_lab.java_smt.basicimpl;
+package org.sosy_lab.java_smt.test;
12
13
import static com.google.common.truth.Truth.assertThat;
14
15
+import com.google.common.truth.Truth;
16
import org.junit.Test;
17
+import org.sosy_lab.java_smt.basicimpl.Tokenizer;
18
19
public class TokenizerTest {
20
@Test
21
public void validBrackets() {
22
String smtlib = "(assert (= 3 (+ 2 1)))";
- assertThat(Tokenizer.tokenize(smtlib)).containsExactly(smtlib);
23
+ Truth.assertThat(Tokenizer.tokenize(smtlib)).containsExactly(smtlib);
24
}
25
26
@Test(expected = IllegalArgumentException.class)
0 commit comments