Skip to content

Commit

Permalink
PROC-235: Add a unit test for uppercase first character test
Browse files Browse the repository at this point in the history
  • Loading branch information
Antony Tran committed Aug 26, 2016
1 parent a53148b commit 267454b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
@@ -0,0 +1,17 @@
package com.indeed.proctor.groups;

import junit.framework.Assert;
import org.junit.Test;

import static com.indeed.proctor.groups.UppercaseFirstCharacterGroups.Test.UPPERCASE_FIRST_CHARACTER_TEST;

/**
*
*/
public class TestUppercaseFirstCharacterGroups {

@Test
public void testUppercaseFirstCharacter() {
Assert.assertEquals("Uppercase_first_character_test", UPPERCASE_FIRST_CHARACTER_TEST.getName());
}
}
@@ -0,0 +1,14 @@
{
"tests": {
"Uppercase_first_character_test": {
"buckets": {
"inactive": -1,
"control": 0,
"test": 1
},
"fallbackValue": -1
}
},
"providedContext": {
}
}

0 comments on commit 267454b

Please sign in to comment.