-
-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Misc] Fix mutation score (put it back to 8%, was 7% after recent com…
…mits)
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
...rc/test/java/org/xwiki/notifications/internal/DefaultCompositeEventStatusManagerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* See the NOTICE file distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as | ||
* published by the Free Software Foundation; either version 2.1 of | ||
* the License, or (at your option) any later version. | ||
* | ||
* This software is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this software; if not, write to the Free | ||
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
*/ | ||
package org.xwiki.notifications.internal; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.xwiki.notifications.CompositeEventStatus; | ||
import org.xwiki.test.junit5.mockito.ComponentTest; | ||
import org.xwiki.test.junit5.mockito.InjectMockComponents; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
/** | ||
* Unit tests ofr {@link DefaultCompositeEventStatusManager} | ||
* | ||
* @version $Id$ | ||
*/ | ||
@ComponentTest | ||
public class DefaultCompositeEventStatusManagerTest | ||
{ | ||
@InjectMockComponents | ||
private DefaultCompositeEventStatusManager eventStatusManager; | ||
|
||
@Test | ||
void getCompositeEventStatusesWhenEmpty() throws Exception | ||
{ | ||
List<CompositeEventStatus> statuses = | ||
this.eventStatusManager.getCompositeEventStatuses(Collections.emptyList(), null); | ||
assertTrue(statuses.isEmpty()); | ||
} | ||
} |