Project

General

Profile

Download (748 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2019 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.cdm.vaadin.ui;
10

    
11
import static com.codeborne.selenide.Selenide.open;
12

    
13
import org.junit.Assert;
14
import org.junit.Test;
15

    
16
import eu.etaxonomy.cdm.SelenideTestBase;
17

    
18
/**
19
 * @author a.kohlbecker
20
 * @since Mar 21, 2019
21
 *
22
 */
23
public class RegistrationUiTest extends SelenideTestBase {
24

    
25
    @Test
26
    public void test()  {
27
        open("http://localhost:"+ localServerPort() + "/app/registration");
28
        Assert.assertEquals("Registration", driver.getTitle());
29
    }
30

    
31

    
32
}
(4-4/4)