Skip to content

uzbekdev1/arn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

arn

ARN developer test -https://www.alliancereservations.com/developer-test.html

Requirements: You must be a U.S. resident living in the continental United States; do not apply otherwise. In C# create a single class that when subclassed allows this sample test code to run using only the file system for storage, no pre-built database allowed; use files. Create all classes required to compile and pass the test case; you may not modify the test. The test is not wrong, it's not a trick. The Id, Save, Delete, and Find methods must be in the super class only; subclasses must not implement these methods themselves. Use nUnit 2.6 as newer versions lack some of these asserts. Do not put your solution on Github, or a zip file, or an attachment, code is just text, email handles text just fine; you can submit the code in the body of an email as plain text. We're interested in the classes you create, not in build-able solutions or projects.

Choose whatever types you feel appropriate, the purpose of the exercise is to see some of your code and discuss with you the solution you if you make it to an interview. Your resume will not be looked at without code that passes this test. Submit your code along with your resume to jobs@allresnet.com. If we like your solution, we'll contact you to continue the process.

[TestCase]
public void ProgrammerTest() {
    var address = new Address("56 Main St", "Mesa", "AZ", "38574");
    var customer = new Customer("John", "Doe", address);
    var company = new Company("Google", address);

    Assert.IsNullOrEmpty(customer.Id);
    customer.Save();
    Assert.IsNotNullOrEmpty(customer.Id);

    Assert.IsNullOrEmpty(company.Id);
    company.Save();
    Assert.IsNotNullOrEmpty(company.Id);

    Customer savedCustomer = Customer.Find(customer.Id);
    Assert.IsNotNull(savedCustomer);
    Assert.AreSame(customer.Address, address);
    Assert.AreEqual(savedCustomer.Address, address);
    Assert.AreEqual(customer.Id, savedCustomer.Id);
    Assert.AreEqual(customer.FirstName, savedCustomer.FirstName);
    Assert.AreEqual(customer.LastName, savedCustomer.LastName);
    Assert.AreEqual(customer, savedCustomer);
    Assert.AreNotSame(customer, savedCustomer);

    Company savedCompany = Company.Find(company.Id);
    Assert.IsNotNull(savedCompany);
    Assert.AreSame(company.Address, address);
    Assert.AreEqual(savedCompany.Address, address);
    Assert.AreEqual(company.Id, savedCompany.Id);
    Assert.AreEqual(company.Name, savedCompany.Name);
    Assert.AreEqual(company, savedCompany);
    Assert.AreNotSame(company, savedCompany);

    customer.Delete();
    Assert.IsNullOrEmpty(customer.Id);
    Assert.IsNull(Customer.Find(customer.Id));

    company.Delete();
    Assert.IsNullOrEmpty(company.Id);
    Assert.IsNull(Company.Find(company.Id));
}