Skip to content

Commit 090eba2

Browse files
author
Quintin Willison
committed
Introduce a pure unit testing 'suite' for the ARTDefault class.
Small for now as it's targeting the issue I'm working on right now, however this will grow.
1 parent 032dc75 commit 090eba2

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package io.ably.lib.transport;
2+
3+
import org.junit.Test;
4+
5+
import static org.junit.Assert.assertEquals;
6+
7+
public class DefaultsTest {
8+
@Test
9+
public void versions() {
10+
assertEquals("1.2", Defaults.ABLY_VERSION);
11+
}
12+
}

0 commit comments

Comments
 (0)