This commit is contained in:
devezhao 2020-03-21 22:48:34 +08:00
parent 342958d325
commit 73a7eda990
2 changed files with 32 additions and 1 deletions

View file

@ -1140,7 +1140,7 @@ a {
i.split.ui-draggable-dragging {
border-right-color: #4285f4 !important;
z-index: 3;
z-index: 7;
cursor: e-resize;
}

View file

@ -0,0 +1,31 @@
/*
Copyright (c) REBUILD <https://getrebuild.com/> and its owners. All rights reserved.
rebuild is dual-licensed under commercial and open source licenses (GPLv3).
See LICENSE and COMMERCIAL in the project root for license information.
*/
package com.rebuild.server.configuration.portals;
import com.rebuild.server.TestSupport;
import com.rebuild.server.service.bizz.UserService;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* @author devezhao
* @since 03/21/2020
*/
public class ViewAddonsManagerTest extends TestSupport {
@Test
public void getViewTab() {
ViewAddonsManager.instance.getViewTab(TEST_ENTITY, UserService.ADMIN_USER);
}
@Test
public void getViewAdd() {
ViewAddonsManager.instance.getViewAdd(TEST_ENTITY, SIMPLE_USER);
}
}