aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/search/grouping/ContinuationTestCase.java
blob: 3f84c32442989e9171f308f971b969cc704968a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.grouping;

import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;

/**
 * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen</a>
 */
public class ContinuationTestCase {

    private static final String KNOWN_CONTINUATION = "BCBCBCBEBGBCBKCBACBKCCK";

    @Test
    public void requireThatToStringCanBeParsedByFromString() {
        Continuation cnt = Continuation.fromString(KNOWN_CONTINUATION);
        assertNotNull(cnt);
        assertEquals(KNOWN_CONTINUATION, cnt.toString());
    }
}