Added UML and Test file fixes, added string description to the DBHelper and SignUp. Further fixes needed

This commit is contained in:
Batuhan Berk Başoğlu 2018-11-16 14:47:26 -05:00
parent 617b75b997
commit e08f9464d1
5 changed files with 21 additions and 7 deletions

View file

@ -9,7 +9,7 @@ import static org.junit.Assert.*;
public class ServiceProviderTest {
ServiceProvider serviceprovider = new ServiceProvider("John123", "1234567890", "John", "Doe",
"testaddress", "8888888888", "companydotcom", true);
"testaddress", "8888888888", "companydotcom", true, "LOL");
/**
* Initiates an ServiceProvider account and tests if the random strings match to the required inputs.

View file

@ -6,7 +6,7 @@ import static org.junit.Assert.*;
public class ServiceProviderTest2 {
ServiceProvider serviceprovider = new ServiceProvider("John123", "1234567890", "John", "Doe",
"testaddress", "8888888888", "companydotcom", true);
"testaddress", "8888888888", "companydotcom", true, "LOL");
/**
* sets availabilities and tests them.
@ -33,13 +33,16 @@ public class ServiceProviderTest2 {
assertEquals( "8888888888", serviceprovider.getPhonenumber() );
assertEquals( "companydotcom", serviceprovider.getCompanyname() );
assertEquals( true, serviceprovider.isLicensed() );
assertEquals( "LOL", serviceprovider.getDescription() );
serviceprovider.setAddress( "Canada, Ontario" );
serviceprovider.setPhonenumber( "+1-416-555-0182" );
serviceprovider.setCompanyname( "Google" );
serviceprovider.setLicensed( false );
serviceprovider.setDescription( "Nope" );
assertNotEquals( "testaddress", serviceprovider.getAddress() );
assertNotEquals( "8888888888", serviceprovider.getPhonenumber() );
assertNotEquals( "companydotcom", serviceprovider.getCompanyname() );
assertNotEquals( true, serviceprovider.isLicensed() );
assertNotEquals( "LOL", serviceprovider.getDescription() );
}
}