SuccessChanges

Summary

  1. tsk28 Creates the entity Visit (details)
  2. tsk28 Adds the tests for the entity Visit (details)
  3. tsk28 Adds to the entity Story the attribute visits (details)
  4. tsk28 Modifies the Story entity tests to adapt them to the new attribute (details)
  5. tsk28 Modifies service and rest tests to remove references to old (details)
  6. tsk28 Modifies the database scripts with the new entity (details)
  7. tsk28 Adds the Visit entity tests to the entity TestSuite (details)
  8. tsk28 Deletes test database creation script (details)
Commit 6b36d89c892e290b67d96c8c3fc5ce94c956c675 by yruben98
tsk28 Creates the entity Visit
Creates the Visit entity to record all the visits made to a specific
story, saving the date on which it is made
The file was addeddomain/src/main/java/es/uvigo/esei/dgss/teamB/microstories/domain/Visit.java (diff)
Commit d2ef8bd4d9fb6ed6ae30c3e225a9616a4f336302 by yruben98
tsk28 Adds the tests for the entity Visit
Adds the necessary tests to verify that the Visit entity is not faulty
and is working correctly
The file was addeddomain/src/test/java/es/uvigo/esei/dgss/teamB/microstories/domain/VisitTest.java (diff)
Commit 1f9d97f06ccb19cff504e4bb806d74110e8854a3 by yruben98
tsk28 Adds to the entity Story the attribute visits
Adds to the Story entity as an attribute the list of visits, and removes
the previous visits attribute
The file was modifieddomain/src/main/java/es/uvigo/esei/dgss/teamB/microstories/domain/Story.java (diff)
Commit 315418c74259f96d973e48dc1d2d1ab2df7fff67 by yruben98
tsk28 Modifies the Story entity tests to adapt them to the new attribute
visits
Modifies the Story entity tests by deleting the old visits attribute,
replacing it with the new one
The file was modifieddomain/src/test/java/es/uvigo/esei/dgss/teamB/microstories/domain/StoryTest.java (diff)
Commit 4aca1393af9ad2dd29c21e988183a78cf42ced5b by yruben98
tsk28 Modifies service and rest tests to remove references to old
attribute visits
Modifies test files to remove references to the old visits attribute to
avoid integration problems with the new entity and attribute
The file was modifiedtests/src/main/resources/datasets/stories.xml (diff)
The file was modifiedservice/src/test/java/es/uvigo/esei/dgss/teamB/microstories/service/StoryServiceTest.java (diff)
The file was modifiedservice/src/main/java/es/uvigo/esei/dgss/teamB/microstories/service/StoryService.java (diff)
The file was modifiedrest/src/test/java/es/uvigo/esei/dgss/teamB/microstories/rest/StoryResourceRestTest.java (diff)
The file was modifiedtests/src/main/java/es/uvigo/esei/dgss/teamB/microstories/entities/IsEqualToStory.java (diff)
The file was modifiedtests/src/main/java/es/uvigo/esei/dgss/teamB/microstories/entities/StoriesDataset.java (diff)
Commit cc44110227936d1b98abd0f3b3b94f88ac9cf0b0 by yruben98
tsk28 Modifies the database scripts with the new entity
Modifies the database scripts to remove the old attribute and add the
new entity. The creation, deletion, reset and example data of the new
entity is added.
The file was modifiedadditional-material/db/microstories-mysql.drop.sql (diff)
The file was modifiedadditional-material/db/microstories-mysql.creation.sql (diff)
The file was modifiedadditional-material/db/microstories-mysql.data.sql (diff)
The file was modifiedadditional-material/db/microstories-mysql.full.sql (diff)
The file was modifiedadditional-material/db/microstories-mysql.delete.sql (diff)
Commit f71a7ef46a9e30d0ef0475d3e61a8aab6fbc6801 by yruben98
tsk28 Adds the Visit entity tests to the entity TestSuite
Adds the class with the Visit entity tests to the entity TestSuite
The file was modifieddomain/src/test/java/es/uvigo/esei/dgss/teamB/microstories/domain/EntitiesTestSuite.java (diff)
Commit 607a4f9ad2f9def0b676d5307455684219ed8ebf by yruben98
tsk28 Deletes test database creation script
Removes test database creation script that is no longer needed, since
the visits attribute does not exist as an integer in the Story entity.
The file was removedtests/src/main/resources/datasets/stories-visit-story.xml (diff)