[Step(@"^we add entry points:$")] public void AddEntryPoints(string[][] table) { assetEditor.SerialisedAsset("NewService").ApplyModifiedPropertiesWithoutUndo(); for (int row = 1; row < table.Length; row++) { newService.AddEntryPoint(table[row][0], table[row][1], table[row][2]); } assetEditor.SerialisedAsset("NewService").Update(); }