Added comments
This commit is contained in:
parent
c44539c59d
commit
a2ff9fc82c
3 changed files with 7 additions and 24 deletions
Binary file not shown.
|
@ -49,29 +49,5 @@
|
|||
<pair source="c" header="h" fileNamingConvention="NONE" />
|
||||
</extensions>
|
||||
</Objective-C-extensions>
|
||||
<DBN-PSQL>
|
||||
<case-options enabled="false">
|
||||
<option name="KEYWORD_CASE" value="lower" />
|
||||
<option name="FUNCTION_CASE" value="lower" />
|
||||
<option name="PARAMETER_CASE" value="lower" />
|
||||
<option name="DATATYPE_CASE" value="lower" />
|
||||
<option name="OBJECT_CASE" value="preserve" />
|
||||
</case-options>
|
||||
<formatting-settings enabled="false" />
|
||||
</DBN-PSQL>
|
||||
<DBN-SQL>
|
||||
<case-options enabled="false">
|
||||
<option name="KEYWORD_CASE" value="lower" />
|
||||
<option name="FUNCTION_CASE" value="lower" />
|
||||
<option name="PARAMETER_CASE" value="lower" />
|
||||
<option name="DATATYPE_CASE" value="lower" />
|
||||
<option name="OBJECT_CASE" value="preserve" />
|
||||
</case-options>
|
||||
<formatting-settings enabled="false">
|
||||
<option name="STATEMENT_SPACING" value="one_line" />
|
||||
<option name="CLAUSE_CHOP_DOWN" value="chop_down_if_statement_long" />
|
||||
<option name="ITERATION_ELEMENTS_WRAPPING" value="chop_down_if_not_single" />
|
||||
</formatting-settings>
|
||||
</DBN-SQL>
|
||||
</code_scheme>
|
||||
</component>
|
|
@ -8,6 +8,9 @@ public class ServiceProviderTest2 {
|
|||
ServiceProvider serviceprovider = new ServiceProvider("John123", "1234567890", "John", "Doe",
|
||||
"testaddress", "8888888888", "companydotcom", true);
|
||||
|
||||
/**
|
||||
* sets availabilities and tests them.
|
||||
*/
|
||||
@Test
|
||||
public void testAvailabilities() {
|
||||
int [][] availability = new int[7][4];
|
||||
|
@ -20,6 +23,10 @@ public class ServiceProviderTest2 {
|
|||
assertEquals( availability, serviceprovider.getAvailabilities());
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests other instances and checks if they are correct
|
||||
*
|
||||
*/
|
||||
@Test
|
||||
public void testOtherInstances() {
|
||||
assertEquals( "testaddress", serviceprovider.getAddress() );
|
||||
|
|
Loading…
Reference in a new issue